Add enum GravityBehavior (FlyMode) from MQ2

This commit is contained in:
Michael Cook (mackal) 2017-07-29 18:23:42 -04:00
parent 4f016de277
commit e32b6c55e4

View File

@ -207,6 +207,16 @@ typedef enum { //fear states
enum { FlyMode0 = 0, FlyMode1 = 1, Flymode2 = 2, FlyMode3 = 3 }; enum { FlyMode0 = 0, FlyMode1 = 1, Flymode2 = 2, FlyMode3 = 3 };
// This is actually FlyMode, from MQ2
enum GravityBehavior {
Ground,
Flying,
Levitating,
Water,
Floating, // boat
LevitateWhileRunning
};
struct TradeEntity; struct TradeEntity;
class Trade; class Trade;
enum TradeState { enum TradeState {