15 lines
241 B
C#
15 lines
241 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class GameController : Node
|
|
{
|
|
public static GameController Instance;
|
|
|
|
[Export] public Node2D Player;
|
|
|
|
public override void _Ready()
|
|
{
|
|
GameController.Instance = this;
|
|
}
|
|
}
|