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

◆ ReadFromContext()

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

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

150 {
151 if(!action_recive_data)
152 {
153 action_recive_data = new RepairTentPartActionReciveData;
154 }
155 super.ReadFromContext(ctx, action_recive_data);
156 RepairTentPartActionReciveData recive_data_repair = RepairTentPartActionReciveData.Cast(action_recive_data);
157
158 if( HasTarget() )
159 {
160 string zone;
161 if ( !ctx.Read(zone) )
162 return false;
163
164 recive_data_repair.m_DamageZoneRecived = zone;
165 }
166 return true;
167 }
override bool HasTarget()
Определения ActionRepairTentPart.c:47
proto bool Read(void value_in)

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