Added guard attack

Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
2026-03-13 19:35:00 +01:00
parent 1eb5b21a5c
commit 7a0143cb80
2 changed files with 48 additions and 24 deletions

View File

@@ -7,6 +7,7 @@ class Entity {
double angle;
EntityState state;
int mapId;
int lastActionTime;
Entity({
required this.x,
@@ -15,5 +16,6 @@ class Entity {
this.angle = 0.0,
this.state = EntityState.staticObj,
this.mapId = 0,
this.lastActionTime = 0,
});
}