server-master/srcs/WingsAPI.Game/Cheats/CheatComponent.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
300 B
C#

namespace WingsEmu.Game.Cheats;
public class CheatComponent : ICheatComponent
{
public bool HasOneHitKill { get; set; }
public bool HasGodMode { get; set; }
public bool IsInvisible { get; set; }
public bool HasNoCooldown { get; set; }
public bool HasNoTargetLimit { get; set; }
}