namespace BizHawk.Client.ApiHawk { /// /// This enum describe how an external tool is handled /// public enum BizHawkExternalToolUsage : short { /// /// General usage, works even with null emulator /// Global = 0, /// /// Specific to an emulator (NES,SNES,etc...) /// EmulatorSpecific = 1, /// /// Specific to a Game /// GameSpecific = 2 } }