pokered/music/pokeredmusicdisasm/Stop.h
KuroiIeWa5Da 4d0797bc3a made changes in repo
hg-commit-id: 1145e088ee27
2012-01-23 01:41:05 -06:00

21 lines
No EOL
412 B
C++

#ifndef STOP_H
#define STOP_H
#include "AbstractData.h"
//Represents 1 end music data
class Stop : public AbstractData
{
public:
// Constructors
Stop();
Stop(unsigned char* byte); // Parse Immidiately
// Re-Implementations
virtual std::string GenAsm();
virtual bool IsValid(unsigned char* byte);
virtual bool Parse(unsigned char* byte);
virtual unsigned int Arguments();
};
#endif