merge projects and arrange script folders

This commit is contained in:
voffka81
2022-08-17 11:14:32 +03:00
parent beea2145cb
commit c0ea0addcb
35 changed files with 608 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using UnityEngine;
public class GameController : MonoBehaviour
{
public Map GameMap;
public PlayerController Player;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}