X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flibr2c2%2Ftrainai.h;h=b3412c5442e18b3b7fffe4ac516d2b58b9558a2c;hb=b85fa11e45805cd71383577642030d8d01f43447;hp=3f98613ded273808782d1244df60efb4f359f831;hpb=9f4f169affcedcf249e935f93e0a15ed60232f6a;p=r2c2.git diff --git a/source/libr2c2/trainai.h b/source/libr2c2/trainai.h index 3f98613..b3412c5 100644 --- a/source/libr2c2/trainai.h +++ b/source/libr2c2/trainai.h @@ -16,8 +16,6 @@ Base class for train AIs. AIs can help the user in various ways, ranging from automatically stopping the train at the end of allocated track to autonomously running a train. - -XXX The timestamp should be removed from tick, but Timetable depends on it */ class TrainAI { @@ -44,6 +42,7 @@ public: virtual void message(const Message &) { } virtual void tick(const Msp::Time::TimeDelta &) = 0; + virtual bool has_intent_to_move() const { return false; } }; } // namespace R2C2