1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/* Constructeur de la classe CAwInterface.
*/
public CAwInterface()
{
}
public CAwInterface(int Width, int Height, GlobalMembersAw_Interpret.EGamePart StartCode, int SubPart)
: this(Width, Height, StartCode, SubPart, false)
{
}
public CAwInterface(int Width, int Height, GlobalMembersAw_Interpret.EGamePart StartCode)
: this(Width, Height, StartCode, 0, false)
{
}
public CAwInterface(int Width, int Height)
: this(Width, Height, GlobalMembersAw_Interpret.EGamePart.e_GP_Intro, 0, false)
{
}
public CAwInterface(int Width, int Height, GlobalMembersAw_Interpret.EGamePart StartCode, int SubPart, bool crappyDevice)
{
m_Width = Width;
m_Height = Height;
if (crappyDevice) //m_Width == 320 && m_Height == 200
noOriginalMode = true;
else
noOriginalMode = false; |
Partager