| author | belugas |
| Fri, 08 Aug 2008 03:37:00 +0000 | |
| changeset 9871 | 57a332d08e74 |
| parent 8212 | cf3fce5c7464 |
| child 10207 | c291a21b304e |
| permissions | -rw-r--r-- |
|
8212
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
1 |
/* $Id$ */ |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
2 |
|
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
3 |
/** @file autoreplace_type.h Types related to autoreplacing. */ |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
4 |
|
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
5 |
#ifndef AUTOREPLACE_TYPE_H |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
6 |
#define AUTOREPLACE_TYPE_H |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
7 |
|
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
8 |
struct EngineRenew; |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
9 |
|
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
10 |
/** |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
11 |
* A list to group EngineRenew directives together (such as per-player). |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
12 |
*/ |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
13 |
typedef EngineRenew* EngineRenewList; |
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
14 |
|
|
cf3fce5c7464
(svn r11775) -Codechange: move all autoreplace/autorenew functions to a single location.
rubidium
parents:
diff
changeset
|
15 |
#endif /* AUTOREPLACE_TYPE_H */ |