16 lines
323 B
C++
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;
|
|
}
|