added the readme

This commit is contained in:
2026-06-08 17:07:34 -04:00
commit 6655fd2886
1001 changed files with 253651 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef RESOURCE_MANAGER_CLASS
#define RESOURCE_MANAGER_CLASS
#include <vector>
#include "Folder.h"
//#include "font.h"
#include "Model.h"
#include "SoundSystem.h"
class ResourceManager {
public:
//std::vector<Font*> fonts;
std::vector<Model*> models;
std::vector<SoundData*> sounds;
public:
};
#endif