コード例 #1
0
ファイル: BaseEntity.cs プロジェクト: quibsorg/CsGoAimbot
 public BaseEntity(BaseEntity copyFrom) : base(copyFrom.Address)
 {
     Address = copyFrom.Address;
     CopyFieldsFrom(copyFrom);
     _classId = copyFrom.ClassId;
     _clientClass = copyFrom.ClientClass;
     _className = copyFrom.ClassName;
 }
コード例 #2
0
ファイル: Player.cs プロジェクト: quibsorg/CsGoAimbot
 public Player(BaseEntity baseEntity) : base(baseEntity)
 {
     _iWeaponIndex = 0;
     Bones = new Skeleton(BoneMatrix);
 }
コード例 #3
0
ファイル: BaseEntity.cs プロジェクト: quibsorg/CsGoAimbot
 public bool SeenBy(BaseEntity ent)
 {
     return SeenBy(ent.Id - 1);
 }
コード例 #4
0
 public Player(BaseEntity baseEntity) : base(baseEntity)
 {
     _iWeaponIndex = 0;
     Bones         = new Skeleton(BoneMatrix);
 }