PIbd-14_Antonova_A.A.__Hard/DifferenceOfWheels/IOrnaments.java

11 lines
233 B
Java
Raw Permalink Normal View History

2024-06-10 13:56:47 +04:00
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);
}