2017-03-25 10:53:40 -06:00
|
|
|
#ifndef BUILDING_READER_H
|
|
|
|
#define BUILDING_READER_H
|
2017-07-04 09:21:25 -06:00
|
|
|
#include <stdint.h>
|
2017-03-25 10:53:40 -06:00
|
|
|
#include "RemoteClient.h"
|
|
|
|
#include "RemoteFortressReader.pb.h"
|
|
|
|
|
|
|
|
DFHack::command_result GetBuildingDefList(DFHack::color_ostream &stream, const DFHack::EmptyMessage *in, RemoteFortressReader::BuildingList *out);
|
|
|
|
void CopyBuilding(int buildingIndex, RemoteFortressReader::BuildingInstance * remote_build);
|
|
|
|
|
2022-04-12 12:48:19 -06:00
|
|
|
#endif
|