Files
Leviathan/Client/Game/game/Interface/RaidSiege/SUIRaidSiegeProgressBaseWnd.cpp
2026-06-01 12:46:52 +02:00

16 lines
323 B
C++

#include "stdafx.h"
#include "SUIRaidSiegeProgressBaseWnd.h"
void SUIRaidSiegeProgressBaseWnd::OnNotifyUIWindowOpen( bool bOpen, bool bLimitWnd )
{
SUIWnd::OnNotifyUIWindowOpen(bOpen);
if (bOpen)
m_opacityChecker.open();
}
void SUIRaidSiegeProgressBaseWnd::setMousePos(int x, int y)
{
m_mouseX = x;
m_mouseY = y;
}