24 lines
No EOL
772 B
C#
24 lines
No EOL
772 B
C#
using GlobalClassLib;
|
|
using MonoGameLibrary.Graphics;
|
|
using ONDClient.GUI;
|
|
using ONDClient.Map;
|
|
|
|
namespace ONDClient;
|
|
|
|
public class ClientEnemy : GlobalEnemy<MapTileProjection, TileConnectorProjection> {
|
|
public ClientEnemy(int typeId, string name, int id, EnemyUIElement sprite, int difficulty, MapTileProjection location, JumpscareUIElement jumpscareSprite) : base(id) {
|
|
Name = name;
|
|
TypeId = typeId;
|
|
Sprite = sprite;
|
|
Location = location;
|
|
JumpscareSprite = jumpscareSprite;
|
|
}
|
|
|
|
// public TextureRegion Sprite { get; set; }
|
|
|
|
public UIElement Sprite { get; set; }
|
|
public override string Name{ get; }
|
|
public override int TypeId{ get; }
|
|
|
|
public JumpscareUIElement JumpscareSprite { get; set; }
|
|
} |