error CS0246: The type or namespace name `Player' could not be found. Are you missing a using directive or an assembly reference?
I want to make a map that allows players to move indefinitely.
but as soon as you start, you get an error.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
public static GameManager Instance;
public Player player; //This point error
// Start is called before the first frame update
void Awake()
{
Instance = this;
}
}
↧