Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1.  
  2. interface IGame {
  3. void Update();
  4. void Draw();
  5. }
  6.  
  7. class PGame<TConfig> implements IGame {
  8.  
  9. override public void Update() { ... }
  10. override public void Draw() { ... }
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement