Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.flappybird.controller;
- import java.awt.event.KeyEvent;
- import com.flappybird.model.Bird;
- /**
- * Interface yang berisi abstract class dari Controller
- */
- public interface IStrategy {
- public void controller(Bird bird, KeyEvent kevent);
- public void controllerReleased(Bird bird, KeyEvent kevent);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement