From a32a8447028798ef05af33230fbcfa3195ab430c Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Mon, 8 Mar 2021 20:03:40 +0000 Subject: Initial commit of the orders/activities system Has the main window provide some control over our test train --- game/activities/go.h | 10 ++++++++++ game/activities/idle.h | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 game/activities/go.h create mode 100644 game/activities/idle.h (limited to 'game/activities') diff --git a/game/activities/go.h b/game/activities/go.h new file mode 100644 index 0000000..8727539 --- /dev/null +++ b/game/activities/go.h @@ -0,0 +1,10 @@ +#ifndef GO_H +#define GO_H + +#include "../activity.h" + +class Go : public Activity::Of { +public: +}; + +#endif diff --git a/game/activities/idle.h b/game/activities/idle.h new file mode 100644 index 0000000..04bc6e5 --- /dev/null +++ b/game/activities/idle.h @@ -0,0 +1,10 @@ +#ifndef IDLE_H +#define IDLE_H + +#include "../activity.h" + +class Idle : public Activity::Of { +public: +}; + +#endif -- cgit v1.2.3