summaryrefslogtreecommitdiff
path: root/src/player_class.hpp
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
committerBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
commit3cdeb22086fc177165acb2d7b6530ccc230ec8e6 (patch)
tree3a026b45b8cb1af24aad41bf242a4e8b5b555772 /src/player_class.hpp
parentbea14b1db03fcd62d7dfd6633a0802f222792311 (diff)
Move class_info to GameEditData
Diffstat (limited to 'src/player_class.hpp')
-rw-r--r--src/player_class.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player_class.hpp b/src/player_class.hpp
index 0e6f5839..02d0fc11 100644
--- a/src/player_class.hpp
+++ b/src/player_class.hpp
@@ -16,8 +16,8 @@
*/
struct player_class
{
- const char *title = nullptr; /* Type of class */
- char *desc = nullptr; /* Small desc of the class */
+ std::string title; /* Type of class */
+ std::string desc; /* Small desc of the class */
const char *titles[PY_MAX_LEVEL / 5] { }; /* Titles */
int display_order_idx; /* Display order index; lowest first */