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

13 lines
No EOL
290 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Game.Cheats;
public interface ICheatComponent
{
public bool HasGodMode { get; set; }
public bool IsInvisible { get; set; }
public bool HasNoCooldown { get; set; }
public bool HasNoTargetLimit { get; set; }
}