本文整理汇总了Java中com.artemis.Manager类的典型用法代码示例。如果您正苦于以下问题:Java Manager类的具体用法?Java Manager怎么用?Java Manager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Manager类属于com.artemis包,在下文中一共展示了Manager类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: Registration_AllTypesWithNoListeners_NoExceptions
import com.artemis.Manager; //导入依赖的package包/类
@Test
public void Registration_AllTypesWithNoListeners_NoExceptions() {
config.setSystem(new BaseSystem() {
@Override
protected void processSystem() {
}
});
config.setSystem(new Manager() {
});
final World w = new World(config);
w.getSystem(EventSystem.class).registerEvents(new Object() {});
w.getSystem(EventSystem.class).dispatch(new SimpleEvent());
// no exception? happy!
}
示例2: createWorld
import com.artemis.Manager; //导入依赖的package包/类
protected World createWorld(Manager manager) {
return new World(new WorldConfigurationBuilder()
.with(manager)
.with(new ExtendedComponentMapperPlugin())
.build());
}