blob: f640a2eceb6b8a272dcb72693e9b1ef9d00680dd (
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
30
31
|
/* $Id$ */
/** @file unmovable.h Functions related to unmovable objects. */
#ifndef UNMOVABLE_H
#define UNMOVABLE_H
#include "unmovable_map.h"
#include "economy_type.h"
#include "economy_func.h"
void UpdateCompanyHQ(Company *c, uint score);
struct UnmovableSpec {
StringID name;
uint8 buy_cost_multiplier;
uint8 sell_cost_multiplier;
Money GetRemovalCost() const { return (_price.clear_roughland * this->sell_cost_multiplier); }
Money GetBuildingCost() const { return (_price.clear_roughland * this->buy_cost_multiplier); }
};
extern const UnmovableSpec _original_unmovable[];
static inline const UnmovableSpec *GetUnmovableSpec(UnmovableType type)
{
return &_original_unmovable[type];
}
#endif /* UNMOVABLE_H */
|