DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ ReadFromContext()

override bool ActionRepairTent::ReadFromContext ( ParamsReadContext ctx,
out ActionReciveData action_recive_data )
inlineprivate

См. определение в файле ActionRepairTent.c строка 128

129 {
130 if(!action_recive_data)
131 {
132 action_recive_data = new RepairTentActionReciveData;
133 }
134 super.ReadFromContext(ctx, action_recive_data);
135 RepairTentActionReciveData recive_data_repair = RepairTentActionReciveData.Cast(action_recive_data);
136
137 if( HasTarget() )
138 {
139 string zone;
140 if ( !ctx.Read(zone) )
141 return false;
142
143 recive_data_repair.m_DamageZoneRecived = zone;
144 }
145 return true;
146 }
override bool HasTarget()
Определения ActionRepairTent.c:47
string m_DamageZoneRecived
Определения ActionRepairTent.c:3
proto bool Read(void value_in)

Перекрестные ссылки HasTarget(), RepairTentActionReciveData::m_DamageZoneRecived и Serializer::Read().