ofb/Assets/Scripts/PlayerController.cs
2023-04-09 21:59:32 -07:00

20 lines
302 B
C#

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()
{
}
}