Package com.artemis.component

Examples of com.artemis.component.Packed


  public void packed_component_mappers_return_new_instance_on_request() {
    world.initialize();
   
    Entity e1 = createEntity(Packed.class);
    Entity e2 = createEntity(Packed.class);
    Packed packed1 = packedMapper.get(e1, true);
    Packed packed2 = packedMapper.get(e2, true);

    assertNotEquals(packed1.entityId, packed2.entityId);
  }
View Full Code Here

TOP

Related Classes of com.artemis.component.Packed

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.