Exemplo n.º 1
0
PTask Task::buildTorch(Callback* call, Vec2 target, Dir attachmentDir) {
  return PTask(new BuildTorch(call, target, attachmentDir));
}
Exemplo n.º 2
0
PTask Task::construction(Collective* col, Vec2 target, SquareType type) {
  return PTask(new Construction(col, target, type));
}
Exemplo n.º 3
0
PTask Task::construction(Callback* c, Vec2 target, SquareType type) {
  return PTask(new Construction(c, target, type));
}