14 lines
329 B
C#
14 lines
329 B
C#
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;
|
|
}
|
|
}
|
|
} |