#ifndef STPLAYER_H
#define STPLAYER_H
#include "../../chipplugin.h"
namespace musix {
class StSoundPlugin : public ChipPlugin
{
public:
std::string name() const override { return "StSound"; }
bool canHandle(const std::string& name) override;
ChipPlayer* fromFile(const std::string& fileName) override;
};
}
#endif