15 lines
260 B
Python
15 lines
260 B
Python
from collections import defaultdict
|
|
|
|
from aoe.types import *
|
|
|
|
|
|
|
|
class Housing():
|
|
|
|
|
|
def __init__(self):
|
|
self.space = defaultdict(int, {
|
|
Buildings.HOUSE: 5,
|
|
Buildings.TOWNCENTER: 5,
|
|
})
|