Exemplo n.º 1
0
//------------------------------------------------------------------------------
//bool IsInSession();
int CvLuaLeague::lIsInSession(lua_State* L)
{
	CvLeague* pLeague = GetInstance(L);

	const bool bValue = pLeague->IsInSession();
	lua_pushboolean(L, bValue);
	return 1;
}