Create GraphicsComponent.java

This commit is contained in:
YanchaoMiao 2020-05-24 19:12:26 +08:00 committed by Ilkka Seppälä
parent 405495f0a8
commit 618b90147a
No known key found for this signature in database
GPG Key ID: 31B7C8F5CC412ECB

View File

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