온라인 구현

This commit is contained in:
김도환
2026-05-01 05:47:12 +09:00
parent 5695b4036f
commit a36270f77a
996 changed files with 267058 additions and 75 deletions

View File

@@ -0,0 +1,14 @@
using UnityEngine;
namespace Photon.Pun.Demo.Procedural
{
/// <summary>
/// The Block component is attach to each instantiated Block at runtime.
/// It provides the Block's ID as well as the parent's Cluster ID in order to apply modifications.
/// </summary>
public class Block : MonoBehaviour
{
public int BlockId { get; set; }
public int ClusterId { get; set; }
}
}