From 862f1dc0ae63b476b620a817bb2ea73d9b35ef3f Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Fri, 15 Oct 2010 13:01:44 +0000 Subject: added 'eject cargo' game command --- src/game/base/cargopod.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/game/base/cargopod.h (limited to 'src/game/base/cargopod.h') diff --git a/src/game/base/cargopod.h b/src/game/base/cargopod.h new file mode 100644 index 0000000..c843efb --- /dev/null +++ b/src/game/base/cargopod.h @@ -0,0 +1,24 @@ +/* + base/cargopod.h + This file is part of the Osirion project and is distributed under + the terms and conditions of the GNU General Public License version 2 +*/ + +#ifndef __INCLUDED_BASE_CARGOPOD_H__ +#define __INCLUDED_BASE_CARGOPOD_H__ + +#include "core/entity.h" + +namespace game +{ + +class CargoPod : public core::EntityDynamic +{ +public: + CargoPod(); + virtual ~CargoPod(); +}; + +} // namespace game + +#endif // __INCLUDED_BASE_CARGOPOD_H__ \ No newline at end of file -- cgit v1.2.3