Starshatter_Open
Open source Starshatter engine
|
#include "MemDebug.h"
#include "Thruster.h"
#include "Component.h"
#include "Drive.h"
#include "FlightComp.h"
#include "SystemDesign.h"
#include "Ship.h"
#include "ShipDesign.h"
#include "Sim.h"
#include "CameraDirector.h"
#include "AudioConfig.h"
#include "Random.h"
#include "Light.h"
#include "Bitmap.h"
#include "Sound.h"
#include "DataLoader.h"
#include "Bolt.h"
#include "Sprite.h"
#include "Game.h"
Go to the source code of this file.
Macros | |
#define | CLAMP(x, a, b) if (x < (a)) x = (a); else if (x > (b)) x = (b); |
Variables | |
Bitmap * | drive_flare_bitmap [8] |
Bitmap * | drive_trail_bitmap [8] |
#define CLAMP | ( | x, | |
a, | |||
b | |||
) | if (x < (a)) x = (a); else if (x > (b)) x = (b); |
Definition at line 44 of file Thruster.cpp.