[editor] add PackListFrame

This commit is contained in:
2019-09-06 16:23:31 +03:00
parent 40bdf6a5cc
commit 4fa5cf84fa
17 changed files with 252 additions and 179 deletions

View File

@@ -1,10 +0,0 @@
package ru.m.tankz.preset;
import ru.m.tankz.Type;
class ClassicGame {
public static var TYPE(default, never):GameType = 'classic';
public static var HUMAN(default, never):TeamId = 'human';
public static var BOT(default, never):TeamId = 'bot';
}

View File

@@ -1,7 +0,0 @@
package ru.m.tankz.preset;
import ru.m.tankz.Type;
class DeathGame {
public static var TYPE(default, never):GameType = 'death';
}

View File

@@ -1,10 +0,0 @@
package ru.m.tankz.preset;
import ru.m.tankz.Type;
class DotaGame {
public static var TYPE(default, never):GameType = 'dota';
public static var RADIANT(default, never):TeamId = 'radiant';
public static var DIRE(default, never):TeamId = 'dire';
}