Class SpaceVillainGame.Fighter
A state holder for the fighters in the SpaceVillain game.
Inheritance
System.Object
SpaceVillainGame.Fighter
Namespace: Content.Server.Arcade.SpaceVillain
Assembly: Content.Server.dll
Syntax
public sealed class Fighter : object
Fields
| Improve this Doc View SourceInvincible
Whether the given fighter can take damage/lose mana.
Declaration
public bool Invincible
Field Value
Type | Description |
---|---|
System.Boolean |
Properties
| Improve this Doc View SourceHp
The current hit point total of the fighter.
Declaration
public int Hp { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
HpMax
The maximum hit point total of the fighter.
Declaration
public int HpMax { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Mp
The current mana total of the fighter.
Declaration
public int Mp { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
MpMax
The maximum mana total of the fighter.
Declaration
public int MpMax { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |