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