Files
Barrack-Unity/Assets/Scripts/Game/Yummies/CakeSpawner.cs
T

17 lines
282 B
C#
Raw Normal View History

2026-08-06 14:43:17 -04:00
using UnityEngine;
public class CakeSpawner : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}