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