Create PhysicsComponent.java

This commit is contained in:
YanchaoMiao 2020-05-24 19:13:38 +08:00 committed by Ilkka Seppälä
parent 8604e65fce
commit 3f08aebcd3
No known key found for this signature in database
GPG Key ID: 31B7C8F5CC412ECB

View File

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