mirror of
https://projects.caleb-brown.dev/UDRI-XRT/UDRIGEEKCup2024.git
synced 2025-01-22 15:18:25 -05:00
11 lines
168 B
C#
11 lines
168 B
C#
using UnityEngine;
|
|
|
|
namespace GolfControls
|
|
{
|
|
public class PhysicsTerrain : MonoBehaviour
|
|
{
|
|
public float drag;
|
|
public float angularDrag;
|
|
}
|
|
}
|