2023-02-16 17:30:33 +00:00
|
|
|
#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");
|
2024-01-03 13:34:38 +00:00
|
|
|
void SendBehaviorBlocksToClient(AMFArrayValue& args) const;
|
|
|
|
double GetX() const { return xPosition; };
|
|
|
|
double GetY() const { return yPosition; };
|
2023-02-16 17:30:33 +00:00
|
|
|
private:
|
|
|
|
double xPosition;
|
|
|
|
double yPosition;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //!__STRIPUIPOSITION__H__
|