summaryrefslogtreecommitdiff
path: root/plugins/deramp.cpp
diff options
context:
space:
mode:
authorQuietust2012-01-15 14:54:14 -0600
committerQuietust2012-01-15 14:54:14 -0600
commite82055986e1d0850915095721175a32656c716c5 (patch)
treeefe8ac66f58ef76b06bec2cf78bafce4e7773fae /plugins/deramp.cpp
parentf3cbf07a0130a1f41c3e14ce320516425604d01f (diff)
downloaddfhack-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/deramp.cpp')
-rw-r--r--plugins/deramp.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/deramp.cpp b/plugins/deramp.cpp
index 72801b77..a86b61e8 100644
--- a/plugins/deramp.cpp
+++ b/plugins/deramp.cpp
@@ -1,15 +1,15 @@
// De-ramp. All ramps marked for removal are replaced with given tile (presently, normal floor).
#include "Core.h"
-#include <Console.h>
-#include <Export.h>
-#include <PluginManager.h>
+#include "Console.h"
+#include "Export.h"
+#include "PluginManager.h"
#include "DataDefs.h"
#include "df/world.h"
#include "df/map_block.h"
#include "df/tile_dig_designation.h"
-#include <TileTypes.h>
+#include "TileTypes.h"
using std::vector;
using std::string;
@@ -111,4 +111,4 @@ DFhackCExport command_result plugin_init ( Core * c, std::vector <PluginCommand>
DFhackCExport command_result plugin_shutdown ( Core * c )
{
return CR_OK;
-} \ No newline at end of file
+}