mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-01 00:36:46 +00:00
Issue #107: Moved ClassPoint from window manager to character creation
This commit is contained in:
parent
0231533d05
commit
a3b27ae756
2 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue