Exemple #1
0
 protected internal Suspect(string pName, Rage.PoolHandle handle, bool confirmedSuspect = true) : base(pName, Common.PedType.Suspect, handle)
 {
     if (confirmedSuspect == false)
     {
         this.Type = Common.PedType.Unknown;
     }
 }
Exemple #2
0
 protected internal PedBase(string pName, Rage.PoolHandle handle) : this(pName, Common.PedType.Unknown, handle)
 {
 }
Exemple #3
0
 protected internal PedBase(string pName, Common.PedType pType, Rage.PoolHandle handle) : base(handle)
 {
     Name = pName;
     Type = pType;
     Init();
 }