source: trunk/src/video.h @ 24

Last change on this file since 24 was 22, checked in by sam, 13 years ago

Create a tile manager. There are no longer any GL calls in test-map.cpp or
in public headers. Good cleanup.

  • Property svn:keywords set to Id
File size: 275 bytes
Line 
1
2class VideoData;
3
4class Video
5{
6public:
7    Video(char const *title, int width, int height);
8    ~Video();
9
10    int GetWidth() const;
11    int GetHeight() const;
12    void Clear();
13    void Refresh(float milliseconds);
14    void FullScreen();
15
16private:
17    VideoData *data;
18};
Note: See TracBrowser for help on using the repository browser.