added dynamic resolution

This commit is contained in:
2023-10-17 12:48:49 +02:00
parent fe40e33d36
commit 094b805ff7
3 changed files with 11 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ public class Element {
}
public override string ToString() {
return $"{X}:{Y}";
return $"{GetType()} {X}:{Y}";
}
protected bool CheckBelow(int x, int y) {