summaryrefslogtreecommitdiff
path: root/AlienSurvival/Assets/Test/Scripts/TestFakeHeight.cs
blob: 06fe545d68e03714a556c42dc34bf1875302f3f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class TestFakeHeight : MonoBehaviour
{
	[SerializeField]
	private float m_Height; // fake height 
 
    void Update()
    {
        
    }
}