33 lines
No EOL
963 B
C#
33 lines
No EOL
963 B
C#
namespace GlobalClassLib;
|
|
|
|
public abstract class GlobalEnemy<TTile, TCon> where TTile : GlobalMapTile<TCon, TTile> where TCon : GlobalTileConnector<TTile, TCon> {
|
|
public TTile? Location { get; set; }
|
|
public bool Visible { get; set; }
|
|
public abstract string Name{ get; }
|
|
|
|
public abstract int TypeId{ get; }
|
|
public int Id { get; }
|
|
|
|
private static int nextId = 0;
|
|
|
|
|
|
// public static Dictionary<TTile, GlobalEnemy<TTile, TCon>> PresentEnemies = new();
|
|
|
|
public GlobalEnemy() {
|
|
|
|
Id = nextId++;
|
|
}
|
|
|
|
public GlobalEnemy(int id) {
|
|
Id = id;
|
|
}
|
|
public virtual void Spawn(TTile? location) {
|
|
// PresentEnemies.Add(location, this);
|
|
Location = location;
|
|
Visible = true;
|
|
Console.WriteLine($"Enemy {Id} ({Name}) spawned at {(location == null ? "" : location.Id)} {(location == null ? "" : location.GridPosition)}");
|
|
}
|
|
|
|
public virtual void Update() { }
|
|
|
|
} |