diff options
| author | Jonas Ask | 2009-10-24 15:18:23 +0000 |
|---|---|---|
| committer | Jonas Ask | 2009-10-24 15:18:23 +0000 |
| commit | b9b42b21eedfc351055bfc699084313a12d82897 (patch) | |
| tree | bb9174d4d54ab89fb8237a4f79d0b323a4bb17ef /CreatureConfiguration.h | |
| parent | bcc3757c422be47d0889bbab87767c6417d311d3 (diff) | |
| download | stonesense-b9b42b21eedfc351055bfc699084313a12d82897.tar.gz stonesense-b9b42b21eedfc351055bfc699084313a12d82897.tar.bz2 stonesense-b9b42b21eedfc351055bfc699084313a12d82897.tar.xz | |
Creature info now loads from an xml file.
Log system. Log messages are written to Stonesense.log
Diffstat (limited to 'CreatureConfiguration.h')
| -rw-r--r-- | CreatureConfiguration.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CreatureConfiguration.h b/CreatureConfiguration.h new file mode 100644 index 0000000..48f4db0 --- /dev/null +++ b/CreatureConfiguration.h @@ -0,0 +1,19 @@ +#pragma once
+
+class CreatureConfiguration
+{
+public:
+ char gameIDstr[100];
+ int gameID;
+ int sheetIndex;
+
+ CreatureConfiguration(char* gameIDstr, int sheetIndex);
+ ~CreatureConfiguration(void);
+};
+
+
+
+
+extern bool CreatureNamesTranslatedFromGame;
+
+void TranslateCreatureNames();
\ No newline at end of file |
