Spelunx Cavern SDK
 
Loading...
Searching...
No Matches
IDebugKeys.cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using UnityEngine;
3
4namespace Spelunx
5{
6 // An interface for all DebugKey components, to make finding them in the scene easier
7 public interface IDebugKeys
8 {
9 public List<(string Key, string Description)> KeyDescriptions();
10
11 public void DoExtraGUI() { }
12 }
13}
List<(string Key, string Description)> KeyDescriptions()