Advertisement
Rapptz

lolwhat

Nov 28th, 2012
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.68 KB | None | 0 0
  1. #pragma once
  2. #ifndef SDGUI_TEMPLATE_HPP
  3. #define SDGUI_TEMPLATE_HPP
  4.  
  5. namespace sd {
  6.     class templateAPI {
  7.     protected:
  8.         size_t x;
  9.         size_t y;
  10.         size_t width;
  11.         size_t height;
  12.         size_t staticX;
  13.         size_t staticY;
  14.         size_t drawOrder;
  15.         bool internal;
  16.         bool visible;
  17.         bool hover;
  18.         bool alwaysUpdate;
  19.         bool retainSize;
  20.         bool mouseFunc;
  21.         templateAPI(): x(0),y(0),width(5),height(5),staticX(0),staticY(0),drawOrder(0),internal(false),visible(true),hover(false),alwaysUpdate(false),retainSize(false),mouseFunc(false)
  22.         {}
  23.     };
  24.  
  25. } //namespace sd
  26.  
  27. #endif
  28. //SDGUI_TEMPLATE_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement