aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Graphics/je_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libjin/Graphics/je_window.h')
-rw-r--r--src/libjin/Graphics/je_window.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libjin/Graphics/je_window.h b/src/libjin/Graphics/je_window.h
index 0969a36..7ca1e5e 100644
--- a/src/libjin/Graphics/je_window.h
+++ b/src/libjin/Graphics/je_window.h
@@ -41,17 +41,17 @@ namespace JinEngine
///
///
///
- inline int getW(){ return size.w; }
+ inline int getW(){ return mSize.w; }
///
///
///
- inline int getH(){ return size.h; }
+ inline int getH(){ return mSize.h; }
///
///
///
- inline int getFPS(){ return fps; }
+ inline int getFPS(){ return mFps; }
///
///
@@ -83,9 +83,9 @@ namespace JinEngine
///
void quitSystem() override;
- SDL_Window* wnd;
- JinEngine::Math::Vector2<unsigned int> size;
- int fps;
+ SDL_Window* mWnd;
+ JinEngine::Math::Vector2<unsigned int> mSize;
+ int mFps;
};