summaryrefslogtreecommitdiffstats
path: root/pokemod/Tile.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2007-10-26 20:46:09 +0000
committerBen Boeckel <MathStuf@gmail.com>2007-10-26 20:46:09 +0000
commit4385af885daf460a18e236f08509358f764b2c8c (patch)
tree6c2838312dd7f42769280e24e8abc16b53c165cb /pokemod/Tile.h
parent1f08afc80c73087bf9bde639754670548b89fc9f (diff)
downloadsigen-4385af885daf460a18e236f08509358f764b2c8c.tar.gz
sigen-4385af885daf460a18e236f08509358f764b2c8c.tar.xz
sigen-4385af885daf460a18e236f08509358f764b2c8c.zip
Reverted repo back to rev24 because committing of rev25 messed up
git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@26 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'pokemod/Tile.h')
-rw-r--r--pokemod/Tile.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/pokemod/Tile.h b/pokemod/Tile.h
index 91db541c..e5373fbe 100644
--- a/pokemod/Tile.h
+++ b/pokemod/Tile.h
@@ -44,7 +44,7 @@ namespace PokeGen
W_Whirlpool = 4,
W_End = 5
};
- static const char* WaterStr[W_End];
+ const char* WaterStr[W_End];
enum Force
{
@@ -55,7 +55,7 @@ namespace PokeGen
F_Push = 4,
F_End = 5
};
- static const char* ForceStr[F_End];
+ const char* ForceStr[F_End];
Tile(const Pokemod* par, const unsigned _id);
Tile(const Pokemod* par, Ini& ini, const unsigned _id = UINT_MAX);
@@ -120,6 +120,9 @@ namespace PokeGen
unsigned forceType;
unsigned forceDirection;
};
+
+ const char* WaterStr[Tile::W_End] = {"None", "Normal", "Dive", "Waterfall", "Whirlpool"};
+ const char* ForceStr[Tile::F_End] = {"None", "Slip", "Stop", "Force", "Push"};
}
}