add: Level and Game controllers base

update: scripts are now in folders
This commit is contained in:
KOSMOGOR
2025-03-17 15:28:10 +03:00
parent b268225372
commit 2869bfdb33
26 changed files with 171 additions and 2 deletions
+22
View File
@@ -0,0 +1,22 @@
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;
}