Shipwright/libultraship/libultraship/Factories/PlayerAnimationFactory.h

11 lines
216 B
C++

#include "../PlayerAnimation.h"
#include "Utils/BinaryReader.h"
namespace Ship
{
class PlayerAnimationFactory
{
public:
static PlayerAnimation* ReadPlayerAnimation(BinaryReader* reader);
};
}