1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-07 00:58:39 +02:00
Files
vcmi/client/Gfx/Manager.h

22 lines
351 B
C
Raw Normal View History

#pragma once
#include <memory>
#include <string>
namespace Gfx
{
class CImage;
class CAnimation;
typedef std::shared_ptr<CImage> PImage;
typedef std::shared_ptr<CAnimation> PAnimation;
class CManager
{
public:
static PImage getImage(const std::string& fname);
static PAnimation getAnimation(const std::string& fname);
};
}