forked from PokemonAutomation/Arduino-Source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestProgramComputer.h
More file actions
43 lines (29 loc) · 966 Bytes
/
Copy pathTestProgramComputer.h
File metadata and controls
43 lines (29 loc) · 966 Bytes
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
/* Test Program (Computer)
*
* From: https://github.com/PokemonAutomation/
*
*/
#ifndef PokemonAutomation_Computer_TestProgram_H
#define PokemonAutomation_Computer_TestProgram_H
#include "Common/Cpp/Options/StaticTextOption.h"
#include "Common/Cpp/Options/StringOption.h"
#include "Common/Cpp/Options/MacAddressOption.h"
#include "CommonTools/Options/ScreenWatchOption.h"
#include "ComputerPrograms/ComputerProgram.h"
namespace PokemonAutomation{
class TestProgramComputer_Descriptor : public ComputerProgramDescriptor{
public:
TestProgramComputer_Descriptor();
};
class TestProgramComputer : public ComputerProgramInstance{
public:
TestProgramComputer();
virtual void program(ProgramEnvironment& env, CancellableScope& scope) override;
private:
StaticTextOption STATIC_TEXT;
StringOption IMAGE_PATH;
ScreenWatchOption SCREEN_WATCHER;
MacAddressCell MAC_ADDRESS;
};
}
#endif