Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

api Sticky Locked

A topic by Oblerion Studio created 93 days ago Views: 29
This topic was locked by Oblerion Studio 93 days ago
Viewing posts 1 to 2
Developer (1 edit)

api

local api={
-- function print(text) 
  print = {
    type = "function",
    description = [[A print function]],
    --       var:type
    args = "(text:string)",
    returns = "()"
  },
-- function getX() => x
  getX = {
    type = "function",
    description = [[A function to get x value]],
    args = "()",
    returns = "(x:number)"
  }
}
Developer locked this topic