]> code.bitgloo.com Git - clyne/gamedev.git/commitdiff
better
authorClyne Sullivan <tullivan99@gmail.com>
Tue, 8 Sep 2015 22:58:32 +0000 (18:58 -0400)
committerClyne Sullivan <tullivan99@gmail.com>
Tue, 8 Sep 2015 22:58:32 +0000 (18:58 -0400)
include/Quest.h
src/Quest.cpp

index 65f5b39ece6ac334f439517261b7c5f4dc15bdfd..5a4144f84c7c096bdd4f38b3f3760e5f61e32074 100644 (file)
@@ -11,7 +11,6 @@ class Quest {
 public:
        char *title,*desc;
        unsigned int xp;
-       Quest();
        Quest(const char *t,const char *d,unsigned int x);
        ~Quest();
 };
index 52ab3a81373383a0d026cef0d99313854ef2b990..82c405d4e1146d9464c571427f3f0ab20211f1ef 100644 (file)
@@ -1,11 +1,9 @@
 #include <Quest.h>
 
-Quest QuestList[TOTAL_QUESTS]={
+const Quest QuestList[TOTAL_QUESTS]={
        Quest("Test","A test quest",0)
 };
 
-Quest::Quest(){
-}
 Quest::Quest(const char *t,const char *d,unsigned int x){
        size_t len;
        title=(char *)malloc((len=strlen(t)));