AxibugEmuOnline/AxibugEmuOnline.Client.Switch/Assets/Plugins/Essgee.Unity/Enumerations.cs
2025-08-20 10:25:32 +08:00

18 lines
351 B
C#

using System;
namespace Essgee
{
public enum ScreenSizeMode { Stretch, Scale, Integer }
public enum ExceptionResult { Continue, StopEmulation, ExitApplication }
public enum ExtraDataTypes { Raw, Image }
[Flags]
public enum ExtraDataOptions
{
IncludeDateTime = (1 << 0),
AllowOverwrite = (1 << 1)
}
}