2022-01-10 22:25:25 +03:00

21 lines
585 B
C#

using System.Collections.Generic;
using HexFiled;
using TMPro;
using UnityEngine;
namespace Data
{
[CreateAssetMenu(fileName = "FieldData", menuName = "Data/Field Data")]
public class FieldData : ScriptableObject
{
public int width = 6;
public int height = 6;
public int hexCaptureManaCost;
public int hexHardCaptureManaCost;
public float hexHardCaptureTime;
public GameObject cellPrefab;
public TMP_Text cellLabelPrefab;
public GameObject CoordinatesCanvas;
public List<CellColor> colors;
}
}