Files
sharpemu/src/SharpEmu.HLE/Generation.cs
T
ParantezTech 4d73f469bc initial commit
2026-03-11 15:48:28 +03:00

15 lines
198 B
C#

// Copyright (C) 2026 SharpEmu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
namespace SharpEmu.HLE;
[Flags]
public enum Generation
{
None = 0,
Gen4 = 1,
Gen5 = 2,
}