8 lines
196 B
C#
8 lines
196 B
C#
using UnityEngine;
|
|
|
|
//! This class is attached to placeholder objects identified through Unity's GetComponent method.
|
|
public class BlockDummy : MonoBehaviour
|
|
{
|
|
public string type;
|
|
}
|