Create Component.java

This commit is contained in:
YanchaoMiao
2020-05-24 19:11:37 +08:00
committed by Ilkka Seppälä
parent b2a22e506e
commit f9ca7f752e

View File

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