Start work on an generic implementation for showing fitting/drone/implant/booster/etc. view columns.

This commit is contained in:
cncfanatics
2010-08-18 22:04:37 +02:00
parent a925d6b59c
commit a4f19f83bb
14 changed files with 192 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
__all__ = ["moduleState", "moduleNameOrSlot"]
columns = {}
def registerColumn(column):
columns[column.name] = column
def getColumn(name):
return columns[name]