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
No known key found for this signature in database
GPG Key ID: 31B7C8F5CC412ECB

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);
}