Marc-Antoine Dumont 1ec4de6231 Initial commit
2015-10-27 22:47:35 -04:00

13 lines
216 B
C#

using UnityEngine;
using System.Collections;
public class Gravity : MonoBehaviour {
public Character player;
// Update is called once per frame
void Update () {
int test = player.getMass();
}
}