14 lines
207 B
C#
14 lines
207 B
C#
|
using System;
|
||
|
using System.Collections;
|
||
|
using UnityEngine;
|
||
|
|
||
|
|
||
|
public class HexCell : MonoBehaviour
|
||
|
{
|
||
|
public HexCoordinates coordinates;
|
||
|
public Color color;
|
||
|
|
||
|
private void Awake()
|
||
|
{
|
||
|
}
|
||
|
}
|