1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 15:36:41 +00:00

Issue #107: Moved ClassPoint from window manager to character creation

This commit is contained in:
Marc Zinnschlag 2012-08-12 10:50:03 +02:00
parent 0231533d05
commit a3b27ae756
2 changed files with 8 additions and 8 deletions

View file

@ -104,6 +104,14 @@ namespace
{ESM::Class::Combat, ESM::Class::Magic, ESM::Class::Stealth} {ESM::Class::Combat, ESM::Class::Magic, ESM::Class::Stealth}
} }
} }; } };
struct ClassPoint
{
const char *id;
// Specialization points to match, in order: Stealth, Combat, Magic
// Note: Order is taken from http://www.uesp.net/wiki/Morrowind:Class_Quiz
unsigned int points[3];
};
} }
using namespace MWGui; using namespace MWGui;

View file

@ -79,14 +79,6 @@ namespace MWGui
class AlchemyWindow; class AlchemyWindow;
class SpellWindow; class SpellWindow;
struct ClassPoint
{
const char *id;
// Specialization points to match, in order: Stealth, Combat, Magic
// Note: Order is taken from http://www.uesp.net/wiki/Morrowind:Class_Quiz
unsigned int points[3];
};
class WindowManager class WindowManager
{ {
public: public: