summaryrefslogtreecommitdiff
path: root/music/pokeredmusicdisasm/Velocity.h
diff options
context:
space:
mode:
Diffstat (limited to 'music/pokeredmusicdisasm/Velocity.h')
-rw-r--r--music/pokeredmusicdisasm/Velocity.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/music/pokeredmusicdisasm/Velocity.h b/music/pokeredmusicdisasm/Velocity.h
deleted file mode 100644
index 5f541b96..00000000
--- a/music/pokeredmusicdisasm/Velocity.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef VELOCITY_H
-#define VELOCITY_H
-
-#include "AbstractData.h"
-
-class Velocity : public AbstractData
-{
-public:
- // Constructors
- Velocity();
- Velocity(unsigned char* byte); // Parse Immidiately
- Velocity(unsigned char velocity, unsigned char length, bool); // Set value
-
- // Direct Getters/Setters
- unsigned char GetVelocity();
- void SetVelocity(unsigned char value);
-
- unsigned char GetLength();
- void SetLength(unsigned char value);
-
- // Overides
- virtual std::string GenAsm();
- virtual bool IsValid(unsigned char* byte);
- virtual bool Parse(unsigned char* byte);
- virtual unsigned int Arguments();
-
-private:
- unsigned char velocity;
- unsigned char length;
-};
-
-#endif \ No newline at end of file