Ejemplo n.º 1
0
 public FinalBoss getFinalBoss()
 {
     factory = new FinalBossCreator(content);
     return((FinalBoss)factory.GetEntity());
 }
Ejemplo n.º 2
0
 public Grunt2 getGrunt2()
 {
     factory = new Grunt2Creator(content);
     return((Grunt2)factory.GetEntity());
 }
Ejemplo n.º 3
0
 public MidBoss getMidBoss()
 {
     factory = new MidBossCreator(content);
     return((MidBoss)factory.GetEntity());
 }
Ejemplo n.º 4
0
 public Grunt1 getGrunt1()
 {
     factory = new Grunt1Creator(content);
     return((Grunt1)factory.GetEntity());
 }
Ejemplo n.º 5
0
 public Player getPlayer()
 {
     factory = new PlayerCreator(content);
     return((Player)factory.GetEntity());
 }
Ejemplo n.º 6
0
 public FinalBoss getFinalBoss(string move, string shoot, int startX, int startY, int endX, int endY, String bTexture, String eTexture)
 {
     factory = new FinalBossCreator(content);
     return((FinalBoss)factory.GetEntity(move, shoot, startX, startY, endX, endY, bTexture, eTexture));
 }
Ejemplo n.º 7
0
 public Grunt2 getGrunt2(string move, string shoot, int startX, int startY, int endX, int endY, String bTexture, String eTexture)
 {
     factory = new Grunt2Creator(content);
     return((Grunt2)factory.GetEntity(move, shoot, startX, startY, endX, endY, bTexture, eTexture));
 }
Ejemplo n.º 8
0
 public Player getPlayer(string move, string shoot, int startX, int startY, int endX, int endY, String bTexture, String eTexture)
 {
     factory = new PlayerCreator(content);
     return((Player)factory.GetEntity(move, shoot, startX, startY, endX, endY, bTexture, eTexture));
 }