Create All Needed Scripts
This commit is contained in:
12
Assets/Scripts/Models/Interfaces/IGameBoard.cs
Normal file
12
Assets/Scripts/Models/Interfaces/IGameBoard.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Services;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Models.Interfaces {
|
||||
public interface IGameBoard {
|
||||
int Width { get; }
|
||||
int Height { get; }
|
||||
Gem[,] GemsGrid { get; }
|
||||
Gem GetGemAt(Vector2Int pos);
|
||||
void SetGemAt(Vector2Int pos, Gem gameObject);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user