home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 August / GSSH0804.iso / Action / TumikiFighters / tf0_2.exe / tf / src / abagames / util / sdl / input.d < prev    next >
Text File  |  2004-05-15  |  290b  |  16 lines

  1. /*
  2.  * $Id: input.d,v 1.2 2004/05/14 14:35:39 kenta Exp $
  3.  *
  4.  * Copyright 2003 Kenta Cho. All rights reserved.
  5.  */
  6. module abagames.util.sdl.input;
  7.  
  8. private import SDL;
  9.  
  10. /**
  11.  * Input device interface.
  12.  */
  13. public interface Input {
  14.   public void handleEvent(SDL_Event *event);
  15. }
  16.