This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
428 additions
and 49 deletions.
- +0 −1 README.md
- +2 −0 src/core/World.cpp
- +2 −0 src/core/World.h
- +3 −1 src/core/config.h
- +2 −2 src/render/Rubbish.cpp
- +15 −0 src/vehicles/Bike.h
- +1 −0 src/vehicles/Vehicle.h
- +391 −32 src/weapons/Explosion.cpp
- +12 −13 src/weapons/Explosion.h
There are no files selected for viewing
| @@ -0,0 +1,15 @@ | |||
| #pragma once | |||
|
|
|||
| // some miami bike leftovers | |||
|
|
|||
| enum eBikeNodes { | |||
| BIKE_NODE_NONE, | |||
| BIKE_CHASSIS, | |||
| BIKE_FORKS_FRONT, | |||
| BIKE_FORKS_REAR, | |||
| BIKE_WHEEL_FRONT, | |||
| BIKE_WHEEL_REAR, | |||
| BIKE_MUDGUARD, | |||
| BIKE_HANDLEBARS, | |||
| BIKE_NUM_NODES | |||
| }; | |||
Oops, something went wrong.