16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 08:09:19 +02:00

Merge branch 'tmj-dev' into nogfx

This commit is contained in:
milek7
2017-08-25 22:06:10 +02:00
5 changed files with 138 additions and 163 deletions

View File

@@ -397,12 +397,11 @@ public:
int StationCount();
int StationIndex();
bool IsStop();
bool Primary()
{
return this ? ((iDrivigFlags & movePrimary) != 0) : false;
};
int inline DrivigFlags()
{
inline
bool Primary() const {
return ( ( iDrivigFlags & movePrimary ) != 0 ); };
inline
int DrivigFlags() const {
return iDrivigFlags;
};
void MoveTo(TDynamicObject *to);