com.artemis.FakeEntityFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb-serializer Show documentation
Show all versions of artemis-odb-serializer Show documentation
Fork of Artemis Entity System Framework.
package com.artemis;
public class FakeEntityFactory {
private FakeEntityFactory() {}
public static Entity create(World world, int entityId) {
return new Entity(world, entityId);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy