made changes in repo

hg-commit-id: 1145e088ee27
This commit is contained in:
KuroiIeWa5Da 2012-01-23 01:41:05 -06:00
parent 21caa525cc
commit 4d0797bc3a
30 changed files with 1748 additions and 0 deletions

View file

@ -0,0 +1,21 @@
#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