mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 09:03:42 +00:00
35 lines
747 B
C++
35 lines
747 B
C++
#include "Entity.h"
|
|
|
|
#include <SDL_render.h>
|
|
#include <SDL_mixer.h>
|
|
#include <map>
|
|
#include <string>
|
|
|
|
class Vector2D;
|
|
class Manager;
|
|
|
|
class AssetManager
|
|
{
|
|
public:
|
|
|
|
AssetManager(Manager* manager);
|
|
~AssetManager();
|
|
|
|
void createProjectile(Vector2D pos, Vector2D velocity, int scale, int range, int speed, const char* texturePath, TeamLabel teamLabel);
|
|
|
|
//texture management
|
|
void addTexture(std::string id, const char* path);
|
|
|
|
// sound management
|
|
void addSoundEffect(std::string id, const char* path);
|
|
|
|
SDL_Texture* getTexture(std::string id);
|
|
Mix_Chunk* getSound(std::string id);
|
|
|
|
private:
|
|
|
|
Manager* man;
|
|
std::map<std::string, SDL_Texture*> textures;
|
|
std::map<std::string, Mix_Chunk*> soundEffects;
|
|
};
|