Files
No-Time-To-Rest/Assets/Scripts/Game/LevelController.cs
T
KOSMOGOR 2869bfdb33 add: Level and Game controllers base
update: scripts are now in folders
2025-03-17 15:28:10 +03:00

9 lines
157 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
public class LevelController : MonoBehaviour
{
public List<Transform> spawnPoints;
}