Package com.artemis.reference

Examples of com.artemis.reference.Ship.copy()


    World w = new World();
    w.initialize();
   
    Ship shipFactory = w.createFactory(Ship.class);
    Entity e1 = shipFactory.hitPoints(100).create();
    Entity e2 = shipFactory.copy().hitPoints(200).create();
   
    assertEquals(100, e1.getComponent(HitPoints.class).hitpoints);
    assertEquals(200, e2.getComponent(HitPoints.class).hitpoints);
  }
 
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.