Doesn't work right now, ignore this

pull/11/head
Nicholas Hope 2022-06-14 18:07:08 -04:00
parent e56fcc3d29
commit 27e5d4f5e3
1 changed files with 25 additions and 0 deletions

25
classes.py Normal file
View File

@ -0,0 +1,25 @@
import keywords
def regularClass(cfg):
ret = ''
for key, data in cfg["scout"].items():
ret += keywords.branch("scout", key, data)
return ret
def getEngiConfig(cfg):
ret = ''
for key, data in cfg["engi"].items():
ret += keywords.branch("engi", key, data)
return ret
def getMedicConfig(cfg):
ret = ''
for key, data in cfg["medic"].items():
ret += keywords.branch("medic", key, data)
return ret
def getSpyConfig(cfg):
ret = ''
for key, data in cfg["spy"].items():
ret += keywords.branch("spy", key, data)
return ret