2024-03-09 18:14:49 +02:00
|
|
|
package labwork9;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The WinAPIButton class is an implementation of the Button interface for WinAPI.
|
|
|
|
|
*/
|
|
|
|
|
public class WinAPIButton implements Button {
|
|
|
|
|
@Override
|
|
|
|
|
public void render() {
|
|
|
|
|
System.out.println("Created a Button with WinAPI.");
|
|
|
|
|
}
|
|
|
|
|
}
|