FGRAPHICS_INLINE bool FGraphics::clear(void) { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->clear(); }
FGRAPHICS_INLINE bool FGraphics::clipRect(const Core::FRect& rect, eClipMode mode) { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->clipRect(rect, mode); }
FGRAPHICS_INLINE bool FGraphics::popClipRect(void) { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->restore(); }
FGRAPHICS_INLINE bool FGraphics::restore(int nSave) { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->restore(nSave); }
FGRAPHICS_INLINE bool FGraphics::flush(void) { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->flush(); }
FGRAPHICS_INLINE bool FGraphics::resize(int nWidth, int nHeight) { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->resize(nWidth, nHeight); }
FGRAPHICS_INLINE int FGraphics::save(void) { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->save(); }
const MatchAnswer& MatchTask::MatchEntityAnswer(void) const { FASSERT(m_mutableMatchAnswer != NULL, "MatchAnswer object is null"); return *m_mutableMatchAnswer;
FGRAPHICS_INLINE Core::FSize FGraphics::size(void) const { FASSERT(NULL != m_graphicsPrivate); return m_graphicsPrivate->size(); }
const DataAnswer& MatchTask::DataEntityAnswer(void) const { FASSERT(m_mutableDataAnswer != NULL, "DataAnswer object is null"); return *m_mutableDataAnswer;
const UserRequest& MatchTask::Request(void) const { FASSERT(m_mutableUserRequest != NULL, "UserRequest object is null"); return *m_mutableUserRequest;
void FApplication::OnAppEnterForeground() { FASSERT(g_pFairyGame); g_pFairyGame->OnResume(); }
void FApplication::OnAppEnterBackground() { FASSERT(g_pFairyGame); g_pFairyGame->OnPause(); }
void FApplication::OnResizeWindow(uint32 nWidth, uint32 nHeight) { FASSERT(g_pFairyGame); g_pFairyGame->OnResizeWindow(); }