Initial commit

This commit is contained in:
Nate Bowman
2026-07-26 20:26:36 -04:00
commit 4a014aeb50
12 changed files with 1058 additions and 0 deletions

14
aoe/housing.py Normal file
View File

@@ -0,0 +1,14 @@
from collections import defaultdict
from aoe.types import *
class Housing():
def __init__(self):
self.space = defaultdict(int, {
Buildings.HOUSE: 5,
Buildings.TOWNCENTER: 5,
})