Welcome to your wiki!
This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
The wiki uses Markdown syntax.
WINDOW:
create_window(string title, number width, number height, number mode)
AUDIO:
init_audio()
audio = AUDIO:new()
audio:load("titan.mp3")
audio:play()
audio:stop()
record = RECORDER:new()
record:start()
record:stop()
record:play()
INPUT:
while 1 do
if KEYBOARD:is_pressed(KEY_UP) then
print("the key is up.")
end
if MOUSE:over(vec2D(0, 0)) then
print("Mouse is at (0, 0)")
end
end