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

23 lines
413 B
C#

using System;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
using UnityEngine.SceneManagement;
public class GameController : MonoBehaviour
{
public List<LevelInfo> levels;
}
[Serializable]
public class LevelInfo {
public SceneAsset scene;
public List<EnemyInLevel> enemies;
}
[Serializable]
public class EnemyInLevel {
public GameObject enemy;
public int count;
}