8 lines
163 B
Java
8 lines
163 B
Java
|
import java.awt.*;
|
||
|
|
||
|
public interface IDrawningBlocks {
|
||
|
void DrawBlocks(Graphics g, int startX, int startY, Color bodyColor);
|
||
|
void SetBlocks(int count);
|
||
|
|
||
|
}
|