Advertisement
raffi_pratama

Untitled

Jan 11th, 2021
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package com.flappybird.controller;
  2.  
  3. import java.awt.event.KeyEvent;
  4.  
  5. import com.flappybird.model.Bird;
  6.  
  7. /**
  8.  * Interface yang berisi abstract class dari Controller
  9.  */
  10. public interface IStrategy {
  11.    
  12.     public void controller(Bird bird, KeyEvent kevent);
  13.     public void controllerReleased(Bird bird, KeyEvent kevent);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement