Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #ifndef SDGUI_TEMPLATE_HPP
- #define SDGUI_TEMPLATE_HPP
- namespace sd {
- class templateAPI {
- protected:
- size_t x;
- size_t y;
- size_t width;
- size_t height;
- size_t staticX;
- size_t staticY;
- size_t drawOrder;
- bool internal;
- bool visible;
- bool hover;
- bool alwaysUpdate;
- bool retainSize;
- bool mouseFunc;
- 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)
- {}
- };
- } //namespace sd
- #endif
- //SDGUI_TEMPLATE_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement