13 lines
208 B
C#
13 lines
208 B
C#
using UnityEngine;
|
|
|
|
namespace Simulator.Data
|
|
{
|
|
public class CellComponent : MonoBehaviour
|
|
{
|
|
public GameObject Socket;
|
|
public int x;
|
|
public int y;
|
|
public int z;
|
|
}
|
|
}
|