AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Plugins/Essgee.Unity/Enumerations.cs

18 lines
351 B
C#
Raw Normal View History

2025-02-14 16:09:33 +08:00
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)
}
}