Logo
Vehicle.h
1#pragma once
2
3namespace XXSharpKmyPhysics
4{
5 private ref class Vehicle
6 {
7 public:
8 kmyPhysics::Vehicle *obj;
9 void setForce(float engineForce, float breakForce, float steering);
10 RigidBody^ getRigidBody();
11 };
12}