XPlor/libs/xassets/xmenudef.cpp
2025-09-05 18:35:17 -04:00

49 lines
697 B
C++

#include "xmenudef.h"
#include "xitemdef.h"
XMenuDef::XMenuDef()
: XAsset()
, mWindow()
, mFont()
, mFullScreen()
, mItemCount()
, mFontIndex()
, mCursorItem()
, mFadeCycle()
, mFadeClamp()
, mFadeAmount()
, mFadeInAmount()
, mBlurRadius()
, mOnOpen()
, mOnClose()
, mOnESC()
, mOnKey()
, mVisibleExp()
, mAllowedBinding()
, mSoundName()
, mImageTrack()
, mFocusColor()
, mDisableColor()
, mRectXExp()
, mRectYExp()
, mItems()
{
SetType(ASSET_TYPE_MENU);
SetName("Menu Def");
}
XMenuDef::~XMenuDef()
{
}
void XMenuDef::Clear()
{
}
void XMenuDef::ParseData(QDataStream *aStream)
{
}