Untitled
unknown
csharp
11 days ago
275 B
1
Indexable
Never
using UnityEngine; public abstract class PlayerAction : MonoBehaviour { [SerializeField] protected PlayerPhysics playerPhysics; protected Rigidbody RB => playerPhysics.RB; protected PlayerPhysics.GroundInfo groundInfo => playerPhysics.groundInfo; }
Leave a Comment