mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-07 00:58:39 +02:00
22 lines
351 B
C++
22 lines
351 B
C++
#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);
|
|
};
|
|
|
|
}
|