8 lines
179 B
Plaintext
8 lines
179 B
Plaintext
import java.awt.*;
|
|
|
|
public interface IDrawningIlluminator {
|
|
|
|
void SetIlluminatorCount(int numOfIllum);
|
|
void DrawIlluminator(Graphics g, int _startPosX, int _startPosY);
|
|
}
|