summaryrefslogtreecommitdiff
path: root/Resources/Scripts/Editor/AssetBrowser.lua
blob: 06661a2f211cdc40e8188e933b373d8824818291 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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