This commit is contained in:
2025-12-15 03:44:53 +08:00
parent 25a5950e8d
commit 2a3bcf7423
12 changed files with 326 additions and 107 deletions

View File

@@ -0,0 +1,14 @@
using Enums;
using UnityEngine;
namespace Structs {
public readonly struct BombSpawnRequest {
public Vector2Int Position { get; }
public GemType Color { get; }
public BombSpawnRequest(Vector2Int position, GemType color) {
Position = position;
Color = color;
}
}
}