mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-07 10:57:26 +08:00
[+] Mark supported game versions with attributes
This commit is contained in:
9
AquaMai/Attributes/GameVersionAttribute.cs
Normal file
9
AquaMai/Attributes/GameVersionAttribute.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
|
||||
namespace AquaMai.Attributes;
|
||||
|
||||
public class GameVersionAttribute(uint minVersion = 0, uint maxVersion = 0) : Attribute
|
||||
{
|
||||
public uint MinVersion { get; } = minVersion;
|
||||
public uint MaxVersion { get; } = maxVersion;
|
||||
}
|
||||
Reference in New Issue
Block a user