Update Component.java

This commit is contained in:
YanchaoMiao 2020-05-24 17:22:59 +08:00 committed by Ilkka Seppälä
parent 6523047361
commit df84a3cc74
No known key found for this signature in database
GPG Key ID: 31B7C8F5CC412ECB

View File

@ -1,6 +1,9 @@
package com.iluwater.component;
public interface Component {
void update(GameObject gameObject);
/**
* Component is an interface for all component.
*/
public interface Component { void update(GameObject gameObject);
}