#include <raylib.h>
#include <iostream>
#include <list>
Go to the source code of this file.
Classes | |
class | DrawableManager::Drawable |
Namespaces | |
namespace | DrawableManager |
Functions | |
void | DrawableManager::CreateAll () |
Calls the Create() function for every Drawable in the drawablePool. More... | |
void | DrawableManager::UpdateAll () |
Calls the Update() function for every Drawable in the drawablePool. More... | |
void | DrawableManager::DrawAll () |
Calls the Draw() function for every Drawable in the drawablePool. More... | |
void | DrawableManager::DestroyAllDrawables () |
Destroys every Drawable in the drawablePool and clears drawablePool. More... | |
void | DrawableManager::DestroyDrawableFromID (int id) |
Iterates through drawablePool and destroys the Drawable corresponding to the ID. More... | |
Drawable * | DrawableManager::GetDrawableFromID (int id) |
Get the Drawable From ID object. More... | |