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()
{
}
}