9 lines
184 B
Java
9 lines
184 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);
|
|
}
|