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 >
Wrap
Text File
|
2003-11-29
|
319b
|
17 lines
/*
* $Id: Input.d,v 1.1.1.1 2003/11/28 17:26:30 kenta Exp $
*
* Copyright 2003 Kenta Cho. All rights reserved.
*/
module abagames.util.sdl.Input;
import SDL;
/**
* Input device interface.
*/
//public interface Input {
public abstract class Input {
public void handleEvent(SDL_Event *event);
}