diff options
| author | Quietust | 2012-01-15 14:54:14 -0600 |
|---|---|---|
| committer | Quietust | 2012-01-15 14:54:14 -0600 |
| commit | e82055986e1d0850915095721175a32656c716c5 (patch) | |
| tree | efe8ac66f58ef76b06bec2cf78bafce4e7773fae /plugins/mode.cpp | |
| parent | f3cbf07a0130a1f41c3e14ce320516425604d01f (diff) | |
| download | dfhack-e82055986e1d0850915095721175a32656c716c5.tar.gz dfhack-e82055986e1d0850915095721175a32656c716c5.tar.bz2 dfhack-e82055986e1d0850915095721175a32656c716c5.tar.xz | |
Only use #include <> for system libraries - for everything else, use ""
Diffstat (limited to 'plugins/mode.cpp')
| -rw-r--r-- | plugins/mode.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/mode.cpp b/plugins/mode.cpp index 9c7aefb7..89728a34 100644 --- a/plugins/mode.cpp +++ b/plugins/mode.cpp @@ -2,12 +2,12 @@ using namespace std; #include "Core.h" -#include <Console.h> -#include <Export.h> -#include <PluginManager.h> +#include "Console.h" +#include "Export.h" +#include "PluginManager.h" #include <vector> #include <string> -#include <modules/World.h> +#include "modules/World.h" #include <stdlib.h> using namespace DFHack; @@ -169,4 +169,4 @@ DFhackCExport command_result mode (Core * c, vector <string> & parameters) c->con << endl; } return CR_OK; -}
\ No newline at end of file +} |
