blob: d41d37054c5369c5d13f84f0fc54daf5d5635a09 (
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
29
  | 
/*
   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
  |