summaryrefslogtreecommitdiff
path: root/src/resourceIds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resourceIds.h')
-rw-r--r--src/resourceIds.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/resourceIds.h b/src/resourceIds.h
new file mode 100644
index 0000000..9236fb6
--- /dev/null
+++ b/src/resourceIds.h
@@ -0,0 +1,15 @@
+#ifndef RESOURCE_IDS_H
+#define RESOURCE_IDS_H
+
+#include "resourceManager.h"
+
+namespace Textures{
+ enum class Id{
+ Player_NE_Shooting,
+ Player_SE_Shooting,
+ };
+}
+
+using TextureManager = ResourceManager<sf::Texture, Textures::Id>;
+
+#endif // RESOURCE_IDS_H