/* 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/commodity.h" #include "auxiliary/functions.h" #include "sys/sys.h" namespace game { /* ---- class Commodity -------------------------------------------- */ Commodity::Commodity() : core::Info() { } Commodity::~Commodity() { } } // namespace game