Create InputComponent.java

This commit is contained in:
YanchaoMiao
2020-05-24 19:12:49 +08:00
committed by Ilkka Seppälä
parent 618b90147a
commit 8604e65fce

View File

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