home *** CD-ROM | disk | FTP | other *** search
/ ring.yamanashi.ac.jp/pub/pc/freem/action/ / action.zip / a7xpg0_11.zip / a7xpg / src / abagames / util / sdl / Screen.d < prev    next >
Text File  |  2003-09-20  |  368b  |  18 lines

  1. /*
  2.  * $Id: Screen.d,v 1.1.1.1 2003/09/19 14:55:49 kenta Exp $
  3.  *
  4.  * Copyright 2003 Kenta Cho. All rights reserved.
  5.  */
  6. module abagames.util.sdl.Screen;
  7.  
  8. /**
  9.  * SDL screen handler interface.
  10.  */
  11. //public interface Screen {
  12. public abstract class Screen {
  13.   public void initSDL();
  14.   public void closeSDL();
  15.   public void flip();
  16.   public void clear();
  17. }
  18.