Package net.myexperiments.gos.schedule

Examples of net.myexperiments.gos.schedule.Task


  public Monster(World map, VCGame vcgtge, String name, int number) {
    super();
    world = map;
    this.name = name;
    this.number = number;
    task = new Task(this);
    task.TurnBasedSleep(world.CurrentTurn + 1, STATES.BORN);
    Characterlog = GOSSystem.getLogger();
    world.GOSPS.registerUser(name, this);
    // TODO Auto-generated constructor stub
  }
View Full Code Here


  public Dragon(World map, VCGame vcgtge, String name, int number) {
    super();
    world = map;
    this.name = name;
    this.number = number;
    task = new Task(this);
    task.TurnBasedSleep(world.CurrentTurn + 1, STATES.BORN);
    Characterlog = GOSSystem.getLogger();
    world.GOSPS.registerUser(name, this);
    // TODO Auto-generated constructor stub
  }
View Full Code Here

  }
 
  public Room(World world) {
    this.world = world;
    room = new Node();
    task = new Task(this);
  }
View Full Code Here

  Logger CharacterLog;
 
  public GameCharacter(World map, String name) {
    world = map;
    this.name = name;
    task = new Task(this);
    task.TurnBasedSleep(world.CurrentTurn + 1, STATES.BORN);
    CharacterLog = GOSSystem.getLogger();
    world.GOSPS.registerUser(name, this);
  }
View Full Code Here

TOP

Related Classes of net.myexperiments.gos.schedule.Task

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.