summaryrefslogtreecommitdiff
path: root/Playground/Assets/Scripts/Vehicle/VehicleBase.cs
blob: 0d4b7fa5c207fdb8618c25234d9f5bdf179b492e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class VehicleBase : MonoBehaviour
{
    protected Rigidbody m_Rigidbody;
    public Rigidbody rigidbody { get { return m_Rigidbody; } }

    void Start()
    {
        
    }

    void Update()
    {
        
    }
}