prepping for new skywalk system

This commit is contained in:
2025-01-22 19:43:13 +02:00
parent 7ba5fe1f30
commit 42aacaafb4
16 changed files with 788 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MenuReference : MonoBehaviour
{
public List<MenuTeleportButton> buttons;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}