mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
24 lines
610 B
C++
24 lines
610 B
C++
#ifndef __STRIPUIPOSITION__H__
|
|
#define __STRIPUIPOSITION__H__
|
|
|
|
class AMFArrayValue;
|
|
|
|
/**
|
|
* @brief The position of the first Action in a Strip
|
|
*
|
|
*/
|
|
class StripUiPosition {
|
|
public:
|
|
StripUiPosition() noexcept = default;
|
|
StripUiPosition(const AMFArrayValue& arguments, const std::string& uiKeyName = "ui");
|
|
void SendBehaviorBlocksToClient(AMFArrayValue& args) const;
|
|
[[nodiscard]] double GetX() const noexcept { return m_XPosition; }
|
|
[[nodiscard]] double GetY() const noexcept { return m_YPosition; }
|
|
|
|
private:
|
|
double m_XPosition{ 0.0 };
|
|
double m_YPosition{ 0.0 };
|
|
};
|
|
|
|
#endif //!__STRIPUIPOSITION__H__
|