13 lines
No EOL
290 B
C#
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; }
|
|
} |