Remove unused enum `BizHawkExternalToolUsage`

This commit is contained in:
YoshiRulz 2025-03-28 10:29:56 +10:00
parent 32a8193c74
commit 9ac560d49d
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 0 additions and 23 deletions

View File

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