Untitled

Anonymous
plain_text
04/13/2023 6:36 AM
356 B
14
Indexable
using UnityEngine;

public class HometownContext : MonoBehaviour
{
    public HouseController houseController;

    private void Awake()
    {
        // ... (other components setup)
        houseController = FindObjectOfType<HouseController>();
    }
}
Editor is loading...