Files
Mindustry/core/src/mindustry/logic/Controllable.java
2020-10-20 12:14:53 -04:00

11 lines
306 B
Java

package mindustry.logic;
import mindustry.game.*;
/** An object that can be controlled with logic. */
public interface Controllable{
void control(LAccess type, double p1, double p2, double p3, double p4);
void control(LAccess type, Object p1, double p2, double p3, double p4);
Team team();
}