Newer
Older
DungeonShooting / DungeonShooting_Godot / src / game / ui / mapEditorTools / MapEditorToolsPanel.cs
  1. using Godot;
  2.  
  3. namespace UI.MapEditorTools;
  4.  
  5. public partial class MapEditorToolsPanel : MapEditorTools
  6. {
  7.  
  8. public override void OnShowUi()
  9. {
  10. }
  11.  
  12. public override void OnHideUi()
  13. {
  14. }
  15.  
  16. }