SpriteEventHub* SpriteEventHub::Get() { if (!s_singleton_inst) VEngineExce(ObjectUninitializedException, "SpriteEventHub is used, but it not initialized"); return s_singleton_inst; }
void operator delete[]( void* ptr, size_t nSize ) { VEngineExce(InvalidMemoryAllocException, "this object cant delete operator"); }
void* operator new[]( size_t nSize ) { VEngineExce(InvalidMemoryAllocException, "this object cant new operator"); return NULL; }
void operator delete( void *p, const char* file,int line ) { VEngineExce(InvalidMemoryAllocException, "this object cant delete operator"); }
void* operator new( size_t nSize, const char* file,int line ) { VEngineExce(InvalidMemoryAllocException, "this object cant new operator"); return NULL; }
void operator delete( void *p) { VEngineExce(InvalidMemoryFreeException, "this object cant delete operator"); }