blob: 4f238bec4acaff4e35de3114291f2d48fc07e5c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*
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(commodity_infotype)
{
}
Commodity::~Commodity()
{
}
} // namespace game
|