11 lines
233 B
Java
11 lines
233 B
Java
|
package DifferenceOfWheels;
|
||
|
import java.awt.*;
|
||
|
|
||
|
public interface IOrnaments {
|
||
|
void SetCount(int n);
|
||
|
int get_count_weels();
|
||
|
void DrawOrnament(Graphics2D g, int x, int y);
|
||
|
|
||
|
void DrawWeels(Graphics2D g, int x, int y);
|
||
|
}
|