Move Bomb Responsibilities to BombService

This commit is contained in:
2025-12-17 05:47:28 +08:00
parent 9f2ef833b2
commit b3dc2cb4bd
12 changed files with 262 additions and 248 deletions

View File

@@ -10,5 +10,9 @@ namespace Utils {
public static Vector2 ToVector2(this Vector2Int v) {
return new Vector2(v.x, v.y);
}
public static Vector2Int ToVector2Int(this Vector2 v) {
return new Vector2Int((int)v.x, (int)v.y);
}
}
}