Files
XRLib/Assets/Scripts/Simulator/Components/CellComponent.cs

13 lines
208 B
C#
Raw Permalink Normal View History

2025-11-04 11:02:02 +09:00
using UnityEngine;
2026-02-25 16:30:12 +09:00
namespace Simulator.Data
2025-11-04 11:02:02 +09:00
{
2026-02-25 16:30:12 +09:00
public class CellComponent : MonoBehaviour
{
public GameObject Socket;
public int x;
public int y;
public int z;
}
2025-11-04 11:02:02 +09:00
}