SUNENGINE 0.0.2
A simple and bright C++ game engine.
 
Loading...
Searching...
No Matches
ImageManagerAttorney.h
1#ifndef ImageManagerAttorney_H
2#define ImageManagerAttorney_H
3
4#include "ImageManager.h"
5
14{
15private:
16 friend class SUNENGINE;
17
23 static void Delete() { ImageManager::Delete(); };
24};
25
26#endif
Provides access to the ImageManager's private methods for specific classes.
Definition ImageManagerAttorney.h:14
static void Delete()
Calls the Delete method of the ImageManager.
Definition ImageManagerAttorney.h:23
static void Delete()
Deletes all managed Image objects and the singleton instance.
Definition ImageManager.h:38