refactoring

This commit is contained in:
2026-02-25 16:30:12 +09:00
parent 34376d1257
commit 4a25b39d7b
74 changed files with 5023 additions and 2475 deletions

View File

@@ -1,9 +1,12 @@
using UnityEngine;
public class CellComponent : MonoBehaviour
namespace Simulator.Data
{
public GameObject Socket;
public int x;
public int y;
public int z;
public class CellComponent : MonoBehaviour
{
public GameObject Socket;
public int x;
public int y;
public int z;
}
}