mirror of
https://github.com/ConjureETS/Labo_2_Equ_1_a15.git
synced 2026-03-24 01:50:58 +00:00
13 lines
216 B
C#
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();
|
|
}
|
|
}
|