12 lines
		
	
	
		
			266 B
		
	
	
	
		
			Java
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			266 B
		
	
	
	
		
			Java
		
	
	
	
	
	
|  | 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.");
 | ||
|  |     }
 | ||
|  | }
 |