home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 August / GSSH0804.iso / Action / Parsec47 / Parsec47.exe / p47 / src / abagames / util / sdl / Input.d < prev    next >
Text File  |  2003-11-29  |  319b  |  17 lines

  1. /*
  2.  * $Id: Input.d,v 1.1.1.1 2003/11/28 17:26:30 kenta Exp $
  3.  *
  4.  * Copyright 2003 Kenta Cho. All rights reserved.
  5.  */
  6. module abagames.util.sdl.Input;
  7.  
  8. import SDL;
  9.  
  10. /**
  11.  * Input device interface.
  12.  */
  13. //public interface Input {
  14. public abstract class Input {
  15.   public void handleEvent(SDL_Event *event);
  16. }
  17.