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

@@ -16,8 +16,7 @@ namespace Services {
}
public Gem GetGemAt(Vector2Int pos) {
Gem gameObject = this.gemsGrid[pos.x, pos.y];
return gameObject;
return this.gemsGrid[pos.x, pos.y];
}
public void SetGemAt(Vector2Int pos, Gem gameObject) {