summaryrefslogtreecommitdiff
path: root/src/resourceIds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resourceIds.h')
-rw-r--r--src/resourceIds.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/resourceIds.h b/src/resourceIds.h
index 9236fb6..6e84582 100644
--- a/src/resourceIds.h
+++ b/src/resourceIds.h
@@ -2,14 +2,23 @@
#define RESOURCE_IDS_H
#include "resourceManager.h"
+#include "graphics/textureFont.h"
namespace Textures{
enum class Id{
+ Base_Font,
Player_NE_Shooting,
Player_SE_Shooting,
};
}
-using TextureManager = ResourceManager<sf::Texture, Textures::Id>;
+namespace Fonts{
+ enum class Id{
+ Base_Font,
+ };
+}
+
+using TextureManager = ResourceManager<sf::Texture, Textures::Id>;
+using TextureFontManager = ResourceManager<Graphics::TextureFont, Fonts::Id>;
#endif // RESOURCE_IDS_H