much to do
This commit is contained in:
parent
500915b947
commit
664aa63833
@ -164,11 +164,6 @@ class ConquestMap:
|
|||||||
else:
|
else:
|
||||||
self.regions = {}
|
self.regions = {}
|
||||||
|
|
||||||
async def save_region(self, region):
|
|
||||||
if not self.custom:
|
|
||||||
return False
|
|
||||||
pass # TODO: region data saving
|
|
||||||
|
|
||||||
async def create_number_mask(self):
|
async def create_number_mask(self):
|
||||||
loop = asyncio.get_running_loop()
|
loop = asyncio.get_running_loop()
|
||||||
return await loop.run_in_executor(
|
return await loop.run_in_executor(
|
||||||
@ -281,6 +276,11 @@ class ConquestGame(ConquestMap):
|
|||||||
def game_current_numbered_path(self):
|
def game_current_numbered_path(self):
|
||||||
return self.game_path / "current_numbered.png"
|
return self.game_path / "current_numbered.png"
|
||||||
|
|
||||||
|
async def save_region(self, region):
|
||||||
|
if not self.custom:
|
||||||
|
return False
|
||||||
|
pass # TODO: region data saving
|
||||||
|
|
||||||
async def start_game(self):
|
async def start_game(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user