7 lines
203 B
Java
7 lines
203 B
Java
import java.awt.*;
|
|
|
|
public interface IDrawningDeck {
|
|
void SetDeckCount(int count);
|
|
void DrawningDeck(float _startPosX, float _startPosY, int _warmlyShipWidth, Graphics2D g2d, Color bodyColor);
|
|
}
|