blob: 984a3c23885e34a44c2b27627c74015dd99751a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "openvic-simulation/GameManager.hpp"
#include "openvic-simulation/testing/TestScript.hpp"
namespace OpenVic {
class A_004_networking_tests : public TestScript {
public:
A_004_networking_tests() : TestScript { "A_004_networking_tests" } {
add_requirements();
}
void add_requirements() {}
void execute_script() {}
};
}
|