Files
int2ssl/FalloutScriptDefObject.cpp
T

18 lines
409 B
C++
Raw Normal View History

2015-02-13 16:59:11 +03:00
#include "stdafx.h"
#include "FalloutScript.h"
CFalloutScript::CDefObject::CDefObject(ObjectType type, ULONG ulAttributes, ULONG ulObjectData)
{
2015-02-14 13:39:47 +03:00
m_ulAttributes = ulAttributes;
2015-02-13 16:59:11 +03:00
2015-02-14 14:38:14 +03:00
switch(m_ObjectType = type)
{
2015-02-14 13:39:47 +03:00
case OBJECT_VARIABLE:
m_ulVarValue = ulObjectData;
break;
2015-02-13 16:59:11 +03:00
2015-02-14 13:39:47 +03:00
case OBJECT_PROCEDURE:
m_ulProcIndex = ulObjectData;
}
2015-02-13 16:59:11 +03:00
}