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/regrass.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/regrass.cpp')
| -rw-r--r-- | plugins/regrass.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/regrass.cpp b/plugins/regrass.cpp index 99af1de7..53733fc2 100644 --- a/plugins/regrass.cpp +++ b/plugins/regrass.cpp @@ -2,14 +2,14 @@ // Necessary for worlds generated prior to version 0.31.19 - otherwise, outdoor shrubs and trees no longer grow. #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 "DataDefs.h" #include "df/world.h" #include "df/map_block.h" -#include <TileTypes.h> +#include "TileTypes.h" using std::string; using std::vector; |
