Moved static function prototype

Former-commit-id: f5be3289558e3285f14216428221df0fed2e4d5a
This commit is contained in:
Lynix 2012-12-19 15:02:22 +01:00
parent 0e6215a47e
commit 24720d7df1
1 changed files with 3 additions and 3 deletions

View File

@ -20,12 +20,12 @@ class NAZARA_API NzVideoMode
bool IsFullscreenValid() const; bool IsFullscreenValid() const;
static NzVideoMode GetDesktopMode();
static const std::vector<NzVideoMode>& GetFullscreenModes();
nzUInt8 bitsPerPixel; nzUInt8 bitsPerPixel;
unsigned int height; unsigned int height;
unsigned int width; unsigned int width;
static NzVideoMode GetDesktopMode();
static const std::vector<NzVideoMode>& GetFullscreenModes();
}; };
bool operator==(const NzVideoMode& left, const NzVideoMode& right); bool operator==(const NzVideoMode& left, const NzVideoMode& right);