7 lines
151 B
Java
7 lines
151 B
Java
|
import java.awt.*;
|
||
|
|
||
|
public interface IDrawningEngines {
|
||
|
void Draw(Graphics g, int x, int y, Color bodyColor);
|
||
|
void SetNewEngines(int count);
|
||
|
|
||
|
}
|