summaryrefslogtreecommitdiff
path: root/Resources/Scripts/Editor/AssetBrowser.lua
blob: ee6de6a32277b752619f12c3c1e88a5d334c2aa9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
local Debug = GameLab.Debug
local AssetBrowser = GameLab.Editor.GUI.EditorWindow.Extend("AssetBrowser", "GameLab.Editor")

AssetBrowser.Ctor = function(self)
	self.base.Ctor(self, "AssetBrowser")
	
end

AssetBrowser.OnGUI = function(self)


end

AssetBrowser.OnFocus = function(self)


end

return AssetBrowser