/* base/commodity.cc This file is part of the Osirion project and is distributed under the terms and conditions of the GNU General Public License version 2 */ #include "base/game.h" #include "base/commodity.h" #include "auxiliary/functions.h" #include "sys/sys.h" namespace game { /* ---- class Commodity -------------------------------------------- */ core::InfoType *Commodity::commodity_infotype = 0; Commodity::Commodity() : core::Info() { set_type(commodity_infotype); } Commodity::~Commodity() { } } // namespace game