Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
catchingcontextfishingbase.c
Go to the documentation of this file.
2{
3 bool m_IsSea;
4
5 override protected void DeserializeData(Param par)
6 {
8 if (Class.CastTo(p,par))
9 {
10 m_MainItem = p.param1;
11 m_IsSea = p.param2;
12 //m_Target = p.param2;
13 }
14 }
15}
class BaitData m_MainItem
Definition actionbase.c:42
void CatchingContextBase(Param par)
Super root of all classes in Enforce script.
Definition enscript.c:11
Base Param Class with no parameters.
Definition param.c:12
static proto bool CastTo(out Class to, Class from)
Try to safely down-cast base class to child class.