This commit is contained in:
brausjonas
2023-04-15 00:19:07 +02:00
parent 7e9d715574
commit 95e4d9d0fd
11 changed files with 62 additions and 9 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameCamera : MonoBehaviour
{
public static GameObject gObject;
private void Start()
{
gObject = gameObject;
}
}