Created
October 7, 2018 14:07
-
-
Save 0x61726b/e33b71ccd9714bbaa20f8d45f4aa8463 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
class ColorBox | |
{ | |
public: | |
ColorBox(int stuff) { }; | |
ColorBox() = default;; | |
~ColorBox() = default;; | |
void Update(); | |
void ChangeColor(); | |
/*sf::Vector2f GetPosition() { return body.getPosition(); }*/ | |
private: | |
void Draw() {} | |
bool isCursorOver() { return false; } | |
bool isClickedOn() { return false; } | |
void isDragged() {}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment