Correct file name in the comments to match the actual file name.
This commit is contained in:
parent
79ee88f7c6
commit
1b0ff6cbac
1 changed files with 6 additions and 2 deletions
|
@ -25,7 +25,7 @@
|
||||||
*
|
*
|
||||||
* ---
|
* ---
|
||||||
*
|
*
|
||||||
* genobj.h: General empire objects.
|
* empobj.h: General empire objects.
|
||||||
*
|
*
|
||||||
* Known contributors to this file:
|
* Known contributors to this file:
|
||||||
* Ron Koenderink, 2006
|
* Ron Koenderink, 2006
|
||||||
|
@ -35,18 +35,21 @@
|
||||||
#ifndef EMPOBJ_H
|
#ifndef EMPOBJ_H
|
||||||
#define EMPOBJ_H
|
#define EMPOBJ_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "file.h"
|
||||||
|
#include "nat.h"
|
||||||
#include "commodity.h"
|
#include "commodity.h"
|
||||||
#include "land.h"
|
#include "land.h"
|
||||||
#include "loan.h"
|
#include "loan.h"
|
||||||
#include "lost.h"
|
#include "lost.h"
|
||||||
#include "plane.h"
|
#include "plane.h"
|
||||||
#include "nat.h"
|
|
||||||
#include "news.h"
|
#include "news.h"
|
||||||
#include "nuke.h"
|
#include "nuke.h"
|
||||||
#include "sect.h"
|
#include "sect.h"
|
||||||
#include "ship.h"
|
#include "ship.h"
|
||||||
#include "trade.h"
|
#include "trade.h"
|
||||||
#include "treaty.h"
|
#include "treaty.h"
|
||||||
|
#include "prototypes.h"
|
||||||
|
|
||||||
struct empobj {
|
struct empobj {
|
||||||
short ef_type; /* is always valid */
|
short ef_type; /* is always valid */
|
||||||
|
@ -83,5 +86,6 @@ union empobj_storage {
|
||||||
struct trtstr treaty;
|
struct trtstr treaty;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
extern char * probjname(union empobj_storage *gp);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue