16 lines
281 B
C++
16 lines
281 B
C++
#include "stdafx.h"
|
|
#include "NoTransState.h"
|
|
|
|
// created by _NA001385_20090924_DOMINATION_MAPNPC_AI_BUG
|
|
|
|
void NoTransState::OnEnter(LPARAM param1, LPARAM param2, LPARAM param3)
|
|
{
|
|
State::OnEnter(param1, param2, param3);
|
|
}
|
|
|
|
void NoTransState::OnExit()
|
|
{
|
|
State::OnExit();
|
|
}
|
|
|