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

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