File size: 1,341 Bytes
24b81cb |
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
class BleedingSourceZone
{
string m_FireSelectionName;
int m_Bit;
vector m_EmitterOffset;
vector m_EmitterOrientation;
string m_Bone;
float m_FlowModifier;
int m_MaxTime;
string m_ParticleName;
int m_InventorySlotLocation;
void BleedingSourceZone(string selection_name, int bit, vector offset, vector orientation, string bone, int max_time, float flow_modifier, string particle_name)
{
m_FireSelectionName = selection_name;
m_Bit = bit;
m_EmitterOffset = offset;
m_EmitterOrientation = orientation;
m_Bone = bone;
m_FlowModifier = flow_modifier;
m_MaxTime = max_time;
m_ParticleName = particle_name;
}
//which inv location is associated(is covering) with this bleeding source ?
void SetInvLocation(int inv_slot)
{
m_InventorySlotLocation = inv_slot;
}
int GetInvLocation()
{
return m_InventorySlotLocation;
}
void ~BleedingSourceZone()
{
}
string GetSelectionName()
{
return m_FireSelectionName;
}
int GetMaxTime()
{
return m_MaxTime;
}
string GetParticleName()
{
return m_ParticleName;
}
int GetBit()
{
return m_Bit;
}
float GetFlowModifier()
{
return m_FlowModifier;
}
vector GetOrientation()
{
return m_EmitterOrientation;
}
vector GetOffset()
{
return m_EmitterOffset;
}
string GetBoneName()
{
return m_Bone;
}
} |