Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | from intelligine.display.map import get_map_connector |
||
7 | class SimpleTestWorld1Simulation(TestSimulation): |
||
8 | |||
9 | def __init__(self, *args, **kwargs): |
||
10 | super().__init__(*args, **kwargs) |
||
11 | |||
12 | map_connector = get_map_connector( |
||
13 | getcwd()+"/intelligine/tests/src/simulation/SimpleTestWorld1.tmx", |
||
14 | map_config |
||
15 | ) |
||
16 | self._simulations = map_connector.create_simulations() |
||
17 | |||
18 | def _get_set_up_simulations(self): |
||
19 | return self._simulations |
||
20 |