14 lines
190 B
C#
14 lines
190 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
enum type
|
|
{
|
|
Debug,
|
|
}
|
|
|
|
public class RoomFloor : MonoBehaviour
|
|
{
|
|
[SerializeField]
|
|
type _type;
|
|
}
|