kitchen: README + MISSIONS/engine-c keep-drop notes
This commit is contained in:
parent
1d351918da
commit
575d7d29b8
130 changed files with 9817 additions and 1 deletions
20
openkknd2-am-coder/src/building.h
Normal file
20
openkknd2-am-coder/src/building.h
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# src/building.h
|
||||
|
||||
#ifndef BUILDING_H
|
||||
#define BUILDING_H
|
||||
|
||||
#include "entity.h"
|
||||
|
||||
enum BuildingType {
|
||||
BUILDING_HQ,
|
||||
BUILDING_BARRACKS,
|
||||
BUILDING_COUNT
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
Entity entity;
|
||||
BuildingType type;
|
||||
int resourceCost;
|
||||
} Building;
|
||||
|
||||
#endif // BUILDING_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue