home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GameStar Special 2004 August
/
GSSH0804.iso
/
Action
/
Parsec47
/
Parsec47.exe
/
p47
/
src
/
abagames
/
util
/
sdl
/
Screen.d
< prev
next >
Wrap
Text File
|
2003-11-29
|
368b
|
18 lines
/*
* $Id: Screen.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.Screen;
/**
* SDL screen handler interface.
*/
//public interface Screen {
public abstract class Screen {
public void initSDL();
public void closeSDL();
public void flip();
public void clear();
}