source:
trunk/src/video.h
@
18
Last change on this file since 18 was 18, checked in by , 11 years ago | |
---|---|
|
|
File size: 257 bytes |
Line | |
---|---|
1 | |
2 | class VideoData; |
3 | |
4 | class Video |
5 | { |
6 | public: |
7 | Video(char const *title, int width, int height); |
8 | ~Video(); |
9 | |
10 | int GetWidth() const; |
11 | int GetHeight() const; |
12 | void Refresh(float milliseconds); |
13 | void FullScreen(); |
14 | |
15 | private: |
16 | VideoData *data; |
17 | }; |
Note: See TracBrowser
for help on using the repository browser.