17 lines
230 B
Lua
17 lines
230 B
Lua
TeamTable = {};
|
|
|
|
ETeamType = {
|
|
Red = 1,
|
|
Blue = 2,
|
|
};
|
|
|
|
TeamScoreSymbol = {
|
|
[ETeamType.Red] = -1,
|
|
[ETeamType.Blue] = 1,
|
|
};
|
|
|
|
TeamColor = {
|
|
[ETeamType.Red] = { 1, 0, 0 },
|
|
[ETeamType.Blue] = { 0, 0, 1, },
|
|
};
|