18 lines
351 B
C#
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)
|
|
}
|
|
}
|