Pun-01/Assets/Photon/PhotonUnityNetworking/Demos/DemoProcedural/Scripts/Block.cs
2022-07-08 09:14:55 +08:00

14 lines
428 B
C#

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; }
}
}