blob: 9236fb6a5b539c000d2b9640bd61f2c471ea28b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|