2017-12-24 06:03:25 -07:00
|
|
|
#ifndef ADVENTURE_CONTROL_H
|
|
|
|
#define ADVENTURE_CONTROL_H
|
|
|
|
|
|
|
|
#include "RemoteClient.h"
|
|
|
|
#include "AdventureControl.pb.h"
|
|
|
|
|
|
|
|
DFHack::command_result MoveCommand(DFHack::color_ostream &stream, const AdventureControl::MoveCommandParams *in);
|
2017-12-25 09:30:45 -07:00
|
|
|
DFHack::command_result JumpCommand(DFHack::color_ostream &stream, const AdventureControl::MoveCommandParams *in);
|
2017-12-25 11:38:05 -07:00
|
|
|
DFHack::command_result MenuQuery(DFHack::color_ostream &stream, const dfproto::EmptyMessage *in, AdventureControl::MenuContents *out);
|
2017-12-26 00:04:46 -07:00
|
|
|
DFHack::command_result MovementSelectCommand(DFHack::color_ostream &stream, const dfproto::IntMessage *in);
|
2017-12-26 09:51:36 -07:00
|
|
|
DFHack::command_result MiscMoveCommand(DFHack::color_ostream &stream, const AdventureControl::MiscMoveParams *in);
|
2017-12-26 00:04:46 -07:00
|
|
|
|
2017-12-25 09:30:45 -07:00
|
|
|
void KeyUpdate();
|
|
|
|
|
2017-12-24 06:03:25 -07:00
|
|
|
|
|
|
|
#endif // !ADVENTURE_CONTROL_H
|