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/Console.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/Console.cpp')
| -rw-r--r-- | music/pokeredmusicdisasm/Console.cpp | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/music/pokeredmusicdisasm/Console.cpp b/music/pokeredmusicdisasm/Console.cpp deleted file mode 100644 index 35033bb6..00000000 --- a/music/pokeredmusicdisasm/Console.cpp +++ /dev/null @@ -1,45 +0,0 @@ -#include "Console.h"
-
-using namespace std;
-
-// Basic
-void Console::Get(char* value)
-{
- cin >> value;
-}
-void Console::Get(string& value)
-{
- cin >> value;
-}
-void Console::Print(const char* value)
-{
- cout << value;
-}
-void Console::Error(const char* value)
-{
- cerr << value;
-}
-
-// Upper-Basic
-void Console::PrintLn(const char* value)
-{
- Print(value);
- cout << endl;
-}
-void Console::ErrorLn(const char* value)
-{
- Error(value);
- cerr << endl;
-}
-
-// Higher
-/*void Console::Ask(const char* question, char* answer)
-{
- Print(question);
- Get(answer);
-}
-void Console::Ask(const char* question, string& answer)
-{
- Print(question);
- Get(answer);
-}*/
\ No newline at end of file |
