query1<T1 extends Component> method
Queries entities that have the specified component T1
.
Implementation
Iterable<WorldEntity> query1<T1 extends Component>() {
return query([withComponent<T1>]);
}
Queries entities that have the specified component T1
.
Iterable<WorldEntity> query1<T1 extends Component>() {
return query([withComponent<T1>]);
}