diff options
| author | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-10-12 14:40:37 -0400 |
|---|---|---|
| committer | U-Fish-PC\Daniel <corrnondacqb@yahoo.com> | 2013-10-12 14:40:37 -0400 |
| commit | 8edfcc4b1e36111d400b5f104a04001c66416426 (patch) | |
| tree | 43407055648e05a67aa08a05e9374459ec531bb6 /music/pokeredmusicdisasm/UnkCode.cpp | |
| parent | Merge remote-tracking branch 'kanzure/use-new-preprocessor' (diff) | |
| download | pokeyellow-8edfcc4b1e36111d400b5f104a04001c66416426.tar.gz pokeyellow-8edfcc4b1e36111d400b5f104a04001c66416426.tar.xz pokeyellow-8edfcc4b1e36111d400b5f104a04001c66416426.zip | |
All music and sfx
Diffstat (limited to 'music/pokeredmusicdisasm/UnkCode.cpp')
| -rw-r--r-- | music/pokeredmusicdisasm/UnkCode.cpp | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/music/pokeredmusicdisasm/UnkCode.cpp b/music/pokeredmusicdisasm/UnkCode.cpp deleted file mode 100644 index da3cd02f..00000000 --- a/music/pokeredmusicdisasm/UnkCode.cpp +++ /dev/null @@ -1,55 +0,0 @@ -#include <sstream>
-#include "UnkCode.h"
-
-using namespace std;
-
-UnkCode::UnkCode()
-{
- code = 0;
-}
-
-UnkCode::UnkCode(unsigned char* byte)
-{
- code = 0;
- Parse(byte);
-}
-
-UnkCode::UnkCode(unsigned char code, bool)
-{
- SetCode(code);
-}
-
-// Getters / Setters
-unsigned char UnkCode::GetCode()
-{
- return code;
-}
-
-void UnkCode::SetCode(unsigned char value)
-{
- code = value;
-}
-
-// Re-implemented
-string UnkCode::GenAsm()
-{
- stringstream tmpAsmOut;
- tmpAsmOut << "db $" << hex << (short)code;
- return tmpAsmOut.str();
-}
-
-bool UnkCode::Parse(unsigned char* byte)
-{
- code = byte[0];
- return true;
-}
-
-bool UnkCode::IsValid(unsigned char* byte)
-{
- return true;
-}
-
-unsigned int UnkCode::Arguments()
-{
- return 0;
-}
\ No newline at end of file |
