diff options
Diffstat (limited to 'Samples/Hello/editor')
-rw-r--r-- | Samples/Hello/editor/card_editor.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Samples/Hello/editor/card_editor.lua b/Samples/Hello/editor/card_editor.lua new file mode 100644 index 0000000..3527881 --- /dev/null +++ b/Samples/Hello/editor/card_editor.lua @@ -0,0 +1,12 @@ +local CardEditor = AsuraEditor.Window.New("Card Editor", "tools/My windows/Card editor") + +function CardEditor.OnOpen(self) + self:SetSize(200, 300) + +end + +function CardEditor.OnEvent(self, e) + +end + +return CardEditor
\ No newline at end of file |