Cleanup
This commit is contained in:
14
Assets/Scripts/Structs/BombSpawnRequest.cs
Normal file
14
Assets/Scripts/Structs/BombSpawnRequest.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user