Files
2023-04-15 00:19:07 +02:00

15 lines
244 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameCamera : MonoBehaviour
{
public static GameObject gObject;
private void Start()
{
gObject = gameObject;
}
}