ofb/Assets/Scripts/PlayerController.cs

20 lines
302 B
C#
Raw Normal View History

2023-04-09 21:59:32 -07:00
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()
{
}
}