blob: 85f753ca8238daaf93ee547a395e3e199c320980 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
using UnityEngine;
public class PlayerControl : MonoBehaviour
{
public float movementHorizontal;
public float movementVertical;
public bool grabbing;
public bool boosting;
}
|