Java Code Examples for com.artemis.Aspect#getAspectForAll()
The following examples show how to use
com.artemis.Aspect#getAspectForAll() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PlainPositionSystem3.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PlainPositionSystem3() { super(Aspect.getAspectForAll(PlainPosition.class)); }
Example 2
Source File: PackedPositionSystem3.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PackedPositionSystem3() { super(Aspect.getAspectForAll(PackedPosition.class)); }
Example 3
Source File: PooledPositionSystem2.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PooledPositionSystem2() { super(Aspect.getAspectForAll(PooledPosition.class)); }
Example 4
Source File: MovementSystem.java From ashley with Apache License 2.0 | 4 votes |
public MovementSystem () { super(Aspect.getAspectForAll(PositionComponent.class, MovementComponent.class)); }
Example 5
Source File: BaselinePositionSystem.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public BaselinePositionSystem() { super(Aspect.getAspectForAll(PlainPosition.class)); }
Example 6
Source File: PooledPositionSystem.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PooledPositionSystem() { super(Aspect.getAspectForAll(PooledPosition.class)); }
Example 7
Source File: CompSystemA.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public CompSystemA() { super(Aspect.getAspectForAll(Comp1.class, Comp4.class, Comp5.class)); }
Example 8
Source File: PooledPositionSystem3.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PooledPositionSystem3() { super(Aspect.getAspectForAll(PooledPosition.class)); }
Example 9
Source File: BaselinePositionSystem3.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public BaselinePositionSystem3() { super(Aspect.getAspectForAll(PlainPosition.class)); }
Example 10
Source File: PackedPositionSystem2.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PackedPositionSystem2() { super(Aspect.getAspectForAll(PackedPosition.class)); }
Example 11
Source File: PlainPositionSystem.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PlainPositionSystem() { super(Aspect.getAspectForAll(PlainPosition.class)); }
Example 12
Source File: StateSystem.java From ashley with Apache License 2.0 | 4 votes |
public StateSystem () { super(Aspect.getAspectForAll(StateComponent.class)); }
Example 13
Source File: PlainPositionSystem.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PlainPositionSystem() { super(Aspect.getAspectForAll(PlainPosition.class)); }
Example 14
Source File: BaselinePositionSystem3.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public BaselinePositionSystem3() { super(Aspect.getAspectForAll(PlainPosition.class)); }
Example 15
Source File: CompSystemB.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public CompSystemB() { super(Aspect.getAspectForAll(Comp2.class, Comp8.class, Comp9.class)); }
Example 16
Source File: CompSystemB.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public CompSystemB() { super(Aspect.getAspectForAll(Comp2.class, Comp8.class, Comp9.class)); }
Example 17
Source File: CollisionSystem.java From ashley with Apache License 2.0 | 4 votes |
public CollisionSystem () { super(Aspect.getAspectForAll(PositionComponent.class, RadiusComponent.class)); }
Example 18
Source File: RemovalSystem.java From ashley with Apache License 2.0 | 4 votes |
public RemovalSystem () { super(Aspect.getAspectForAll(RemovalComponent.class)); }
Example 19
Source File: PlainPositionSystem3.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public PlainPositionSystem3() { super(Aspect.getAspectForAll(PlainPosition.class)); }
Example 20
Source File: BaselinePositionSystem2.java From entity-system-benchmarks with Apache License 2.0 | 4 votes |
@SuppressWarnings("unchecked") public BaselinePositionSystem2() { super(Aspect.getAspectForAll(PlainPosition.class)); }