blob: 5cdc86e2037f9fa9ec58b814f36a527bbe47e547 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# include <testing/TestScript.hpp>
# include <GameManager.hpp>
namespace OpenVic {
class A_004_networking_tests : public TestScript {
public:
A_004_networking_tests() {
set_script_name("A_004_networking_tests");
add_requirements();
}
void add_requirements() {
}
void execute_script() {
}
};
}
|