You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.msb.inter;
|
|
|
|
import com.msb.model.abstracts.GameObject;
|
|
|
|
/**
|
|
* @Author bingor
|
|
* @Date 2022/10/11 9:39
|
|
* @Description: com.msb.inter
|
|
* @Version: 1.0
|
|
*/
|
|
public interface Collider {
|
|
public boolean collide(GameObject o1, GameObject o2);
|
|
}
|