Initial commit and start of project

This commit is contained in:
Nicholas Novak
2023-04-09 21:59:32 -07:00
commit 415a92cf24
32 changed files with 2798 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerController : MonoBehaviour
{
Rigidbody rb;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}