musix 0.3.5

Music player library for esoteric audio formats (music from C64,Amiga etc)
Documentation
#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;
};

} // namespace musix

#endif // STPLAYER_H