14 lines
199 B
Lua
14 lines
199 B
Lua
local Faction = {}
|
|
Faction.name = ""
|
|
Faction.characters = {}
|
|
Faction.style = {}
|
|
|
|
--- some sort of global variable :clown:
|
|
FactionList = {}
|
|
|
|
function addFaction(name)
|
|
FactionList[name] = {}
|
|
|
|
end
|
|
|