summaryrefslogtreecommitdiffstats
path: root/engine/include/surface.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/include/surface.hpp')
-rw-r--r--engine/include/surface.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/include/surface.hpp b/engine/include/surface.hpp
index 6e9026a..0c1ac78 100644
--- a/engine/include/surface.hpp
+++ b/engine/include/surface.hpp
@@ -9,13 +9,13 @@ namespace flat {
class surface : virtual public object, virtual public core::labelled
{
- SDL_Surface * sdl_surface;
- SDL_Surface * parent;
+ SDL_Surface * m_sdl_surface;
+ SDL_Surface * m_parent;
- SDL_Rect * offset;
- SDL_Rect * viewport;
+ SDL_Rect * m_offset;
+ SDL_Rect * m_viewport;
- bool hide;
+ bool m_hide;
public: