14 lines
213 B
C#
14 lines
213 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
|
|
namespace AZTECHWB
|
|
{
|
|
public class Floor : MonoBehaviour
|
|
{
|
|
public int floorIndex;
|
|
public bool isEmptyFloor;
|
|
}
|
|
}
|
|
|