wirm/Game/Assets/Scripts/GameManager.cs
2025-02-04 09:08:06 +08:00

24 lines
383 B
C#

/*
Author: Reza
Date: 3/2/25
Description: To keep track of tasks and game mechanics
*/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class GameManager : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}