Files
FebGameJam/Assets/Scripts/MainCharScript.cs
T
2022-02-26 18:45:46 -06:00

19 lines
325 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MainCharScript : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
//Hello!
}
// Update is called once per frame
void Update()
{
}
}