mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-06 05:01:53 +00:00
21 lines
403 B
Beef
21 lines
403 B
Beef
using System;
|
|
using GlitchyEditor.EditWindows;
|
|
using GlitchyEngine.Content;
|
|
using ImGui;
|
|
|
|
namespace GlitchyEditor.Assets;
|
|
|
|
class SpriteEditor : ClosableWindow
|
|
{
|
|
AssetHandle _assetHandle;
|
|
|
|
public this(Editor editor, AssetHandle assetHandle) : base(editor, "Sprite Editor")
|
|
{
|
|
_assetHandle = assetHandle;
|
|
}
|
|
|
|
protected override void InternalShow()
|
|
{
|
|
ImGui.Text("Nothing to see here, yet...");
|
|
}
|
|
} |