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