aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/java/coffee/liz/ecs/model/Component.java
blob: f96ba956598b4aed72d93309e7f82a0843e76975 (plain) (blame)
1
2
3
4
5
6
7
8
package coffee.liz.ecs.model;

/** Component of an {@link Entity}. */
public interface Component {
	default Class<? extends Component> getKey() {
		return getClass();
	}
}