Files
FebGameJam/Assets/MainCharScript.cs
T
Unknown f367cd91e7 Test Scene
Test scene to confirm github works with unity.
2022-02-20 15:29:08 -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()
{
}
}