Initial commit
This commit is contained in:
14
aoe/housing.py
Normal file
14
aoe/housing.py
Normal 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,
|
||||
})
|
||||
Reference in New Issue
Block a user