Aspect.forAllOf constructor

Aspect.forAllOf(
  1. List<Type> componentTypes
)

Creates an aspect where an entity must possess all of the specified components.

Implementation

Aspect.forAllOf(List<Type> componentTypes) {
  allOf(componentTypes);
}