mirror of
https://github.com/thornAvery/kep-hack.git
synced 2025-10-20 13:57:57 +13:00
21 lines
412 B
C++
21 lines
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 |