CD-ROOM/Assets/Scripts/Dungeon/RoomFloor.cs
Gerard Gascón 341a877b4a init
2025-04-24 17:37:25 +02:00

14 lines
190 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
enum type
{
Debug,
}
public class RoomFloor : MonoBehaviour
{
[SerializeField]
type _type;
}