mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
d138b7b878
* Make case consistent * How modular can you go? Holy modular * Add comments * Initialize values
22 lines
438 B
C++
22 lines
438 B
C++
#ifndef __STRIPUIPOSITION__H__
|
|
#define __STRIPUIPOSITION__H__
|
|
|
|
class AMFArrayValue;
|
|
|
|
/**
|
|
* @brief The position of the first Action in a Strip
|
|
*
|
|
*/
|
|
class StripUiPosition {
|
|
public:
|
|
StripUiPosition();
|
|
StripUiPosition(AMFArrayValue* arguments, std::string uiKeyName = "ui");
|
|
double GetX() { return xPosition; };
|
|
double GetY() { return yPosition; };
|
|
private:
|
|
double xPosition;
|
|
double yPosition;
|
|
};
|
|
|
|
#endif //!__STRIPUIPOSITION__H__
|