finished adding content from CLIVAN; not tested yet
[k8-i-v-a-n.git] / src / game / wterrains / owterrains / owterrain_muntuo.cpp
blob9aac171431ffc36cbb7dcfadb17791ce29960124
1 #ifdef HEADER_PHASE
2 OWTERRAIN(muntuo, owterrain)
4 public:
5 virtual cchar *GetNameStem () const;
6 virtual v2 GetBitmapPos (int) const;
7 virtual int GetAttachedDungeon () const;
8 };
11 #else
14 cchar *muntuo::GetNameStem () const { return "isolated, ruined temple"; }
15 v2 muntuo::GetBitmapPos (int) const { return v2(80, 96); }
16 int muntuo::GetAttachedDungeon () const { return MUNTUO; }
19 #endif