summaryrefslogtreecommitdiff
path: root/Samples/Hello/editor/card_editor.lua
blob: 352788152b1affdabf9545c92e23263920cbf17a (plain)
1
2
3
4
5
6
7
8
9
10
11
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