Package org.menacheri.zombie.domain

Examples of org.menacheri.zombie.domain.World


    startGames(ctx);
  }
 
  public static void startGames(AbstractApplicationContext ctx)
  {
    World world = ctx.getBean(World.class);
    GameRoom room1 = (GameRoom)ctx.getBean("Zombie_ROOM_1");
    GameRoom room2 = (GameRoom)ctx.getBean("Zombie_ROOM_2");
    Task monitor1 = new WorldMonitor(world,room1);
    Task monitor2 = new WorldMonitor(world,room2);
    TaskManagerService taskManager = ctx.getBean(TaskManagerService.class);
View Full Code Here


    return room;
  }
 
  public @Bean World world()
  {
    World world = new World();
    world.setAlive(2000000000);
    world.setUndead(1);
    return world;
  }
View Full Code Here

TOP

Related Classes of org.menacheri.zombie.domain.World

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.