26 lines
526 B
C#
26 lines
526 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class RoomInfo : MonoBehaviour
|
|
{
|
|
public static RoomInfo instance;
|
|
public HouseBtn HousePur;
|
|
public HouseBtn HouseLan;
|
|
public HouseBtn HouseQin;
|
|
public HouseBtn HouseLu;
|
|
public HouseBtn HouseHuang;
|
|
public HouseBtn HouseFen;
|
|
// Start is called before the first frame update
|
|
void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|