-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathPokemonSwSh_MaxLair_Run_Battle.h
More file actions
47 lines (38 loc) · 1.26 KB
/
PokemonSwSh_MaxLair_Run_Battle.h
File metadata and controls
47 lines (38 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* Max Lair Run Battle
*
* From: https://github.com/PokemonAutomation/
*
*/
#ifndef PokemonAutomation_PokemonSwSh_MaxLair_Run_Battle_H
#define PokemonAutomation_PokemonSwSh_MaxLair_Run_Battle_H
#include "CommonFramework/Language.h"
#include "PokemonSwSh/MaxLair/Options/PokemonSwSh_MaxLair_Options.h"
#include "PokemonSwSh/MaxLair/Framework/PokemonSwSh_MaxLair_StateMachine.h"
#include "PokemonSwSh/MaxLair/Framework/PokemonSwSh_MaxLair_StateTracker.h"
namespace PokemonAutomation{
namespace NintendoSwitch{
namespace PokemonSwSh{
namespace MaxLairInternal{
StateMachineAction run_move_select(
ProgramEnvironment& env, size_t console_index,
VideoStream& stream, ProControllerContext& context,
OcrFailureWatchdog& ocr_watchdog,
GlobalStateTracker& state_tracker,
const ConsoleSpecificOptions& settings,
bool currently_dmaxed, bool cheer_only,
const EndBattleDecider& decider
);
StateMachineAction throw_balls(
AdventureRuntime& runtime,
ProgramEnvironment& env, size_t console_index,
VideoStream& stream, ProControllerContext& context,
Language language,
OcrFailureWatchdog& ocr_watchdog,
GlobalStateTracker& state_tracker,
const EndBattleDecider& decider
);
}
}
}
}
#endif