mirror of
https://github.com/par274/sharpemu.git
synced 2026-08-02 07:59:44 +08:00
15 lines
198 B
C#
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,
|
|
}
|