public void Init(CoopLocalServerStage stage, int idx, FieldMapTable.EnemyPopTableData data, int count)
 {
     this.stage = stage;
     popIndex   = idx;
     this.data  = data;
     this.count = count;
     enemys     = new List <CoopLocalServerEnemy>();
     isStart    = false;
 }
Exemplo n.º 2
0
 public void InitStage(uint map_id, List <CoopOfflineManager.EnemyPopParam> enemy_pop_params, int now_enemy_id)
 {
     stage = new CoopLocalServerStage(this);
     stage.Init(map_id, enemy_pop_params, now_enemy_id);
 }
Exemplo n.º 3
0
 public void Clear()
 {
     stage = null;
 }