aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ClientHamr
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-04-20 05:36:18 +1000
committerDavid Walter Seikel2014-04-20 05:36:18 +1000
commit83ca7d29cd4e180233ddf2b82b6f99b7796539de (patch)
tree75e93b70e849da76f56e5a3c6fcda4d5c89f5c9a /ClientHamr
parentHave the skin loader add the correct require line, and fix up test to suit. (diff)
downloadSledjHamr-83ca7d29cd4e180233ddf2b82b6f99b7796539de.zip
SledjHamr-83ca7d29cd4e180233ddf2b82b6f99b7796539de.tar.gz
SledjHamr-83ca7d29cd4e180233ddf2b82b6f99b7796539de.tar.bz2
SledjHamr-83ca7d29cd4e180233ddf2b82b6f99b7796539de.tar.xz
Typo--
Diffstat (limited to 'ClientHamr')
-rw-r--r--ClientHamr/GuiLua/test.skang2
1 files changed, 1 insertions, 1 deletions
diff --git a/ClientHamr/GuiLua/test.skang b/ClientHamr/GuiLua/test.skang
index de417da..10382b5 100644
--- a/ClientHamr/GuiLua/test.skang
+++ b/ClientHamr/GuiLua/test.skang
@@ -6,7 +6,7 @@
6-- This is a bit more verbose than I wanted. lol 6-- This is a bit more verbose than I wanted. lol
7local win = skang.window(500, 500, "G'day planet.", 'testWindow') 7local win = skang.window(500, 500, "G'day planet.", 'testWindow')
8skang.thingasm{win, 'quitter', 'Quits the skang window', types = 'widget', widget='"button", "Quit", 10, 10, 100, 30'} 8skang.thingasm{win, 'quitter', 'Quits the skang window', types = 'widget', widget='"button", "Quit", 10, 10, 100, 30'}
9win.W.quitter.action = 'skang.quit()' -- TODO Should look it up in ThingSpace.commands, and translat 'quit' into the Lua 'skang.quit()'? 9win.W.quitter.action = 'skang.quit()' -- TODO Should look it up in ThingSpace.commands, and translate 'quit' into the Lua 'skang.quit()'?
10 10
11skang.thingasm{win, 'ffuncer', 'Calls ffunc', types = 'widget', widget='"button", "ffunc()", 10, 40, 100, 30', action='test.ffunc(3, 4)'} 11skang.thingasm{win, 'ffuncer', 'Calls ffunc', types = 'widget', widget='"button", "ffunc()", 10, 40, 100, 30', action='test.ffunc(3, 4)'}
12 12