mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-07 00:16:36 -08:00
Compare commits
6 Commits
v1.0.173
...
feature/au
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
99afa5a20c | ||
|
|
836849861e | ||
|
|
9a0a8a0338 | ||
|
|
d1bc64604f | ||
|
|
868b2af74f | ||
|
|
75353e34fc |
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
namespace CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
[AttributeUsage(AttributeTargets.Class)]
|
||||
public class GenerateAutomaticInterfaceAttribute : Attribute
|
||||
{
|
||||
public GenerateAutomaticInterfaceAttribute(string namespaceName = "") { }
|
||||
}
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAISound : CPointEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAISound : CPointEntity, ICAISound
|
||||
{
|
||||
public CAISound (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAI_ChangeHintGroup : CBaseEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAI_ChangeHintGroup : CBaseEntity, ICAI_ChangeHintGroup
|
||||
{
|
||||
public CAI_ChangeHintGroup (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAI_Expresser : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAI_Expresser : NativeObject, ICAI_Expresser
|
||||
{
|
||||
public CAI_Expresser (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAI_ExpresserWithFollowup : CAI_Expresser
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAI_ExpresserWithFollowup : CAI_Expresser, ICAI_ExpresserWithFollowup
|
||||
{
|
||||
public CAI_ExpresserWithFollowup (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAK47 : CCSWeaponBaseGun
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAK47 : CCSWeaponBaseGun, ICAK47
|
||||
{
|
||||
public CAK47 (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAmbientGeneric : CPointEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAmbientGeneric : CPointEntity, ICAmbientGeneric
|
||||
{
|
||||
public CAmbientGeneric (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAnimGraphNetworkedVariables : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAnimGraphNetworkedVariables : NativeObject, ICAnimGraphNetworkedVariables
|
||||
{
|
||||
public CAnimGraphNetworkedVariables (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAttributeContainer : CAttributeManager
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAttributeContainer : CAttributeManager, ICAttributeContainer
|
||||
{
|
||||
public CAttributeContainer (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAttributeList : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAttributeList : NativeObject, ICAttributeList
|
||||
{
|
||||
public CAttributeList (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CAttributeManager : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CAttributeManager : NativeObject, ICAttributeManager
|
||||
{
|
||||
public CAttributeManager (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBarnLight : CBaseModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBarnLight : CBaseModelEntity, ICBarnLight
|
||||
{
|
||||
public CBarnLight (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseAnimGraph : CBaseModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseAnimGraph : CBaseModelEntity, ICBaseAnimGraph
|
||||
{
|
||||
public CBaseAnimGraph (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseAnimGraphController : CSkeletonAnimationController
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseAnimGraphController : CSkeletonAnimationController, ICBaseAnimGraphController
|
||||
{
|
||||
public CBaseAnimGraphController (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseButton : CBaseToggle
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseButton : CBaseToggle, ICBaseButton
|
||||
{
|
||||
public CBaseButton (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseCSGrenade : CCSWeaponBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseCSGrenade : CCSWeaponBase, ICBaseCSGrenade
|
||||
{
|
||||
public CBaseCSGrenade (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseCSGrenadeProjectile : CBaseGrenade
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseCSGrenadeProjectile : CBaseGrenade, ICBaseCSGrenadeProjectile
|
||||
{
|
||||
public CBaseCSGrenadeProjectile (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseClientUIEntity : CBaseModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseClientUIEntity : CBaseModelEntity, ICBaseClientUIEntity
|
||||
{
|
||||
public CBaseClientUIEntity (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseCombatCharacter : CBaseFlex
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseCombatCharacter : CBaseFlex, ICBaseCombatCharacter
|
||||
{
|
||||
public CBaseCombatCharacter (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseDMStart : CPointEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseDMStart : CPointEntity, ICBaseDMStart
|
||||
{
|
||||
public CBaseDMStart (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseDoor : CBaseToggle
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseDoor : CBaseToggle, ICBaseDoor
|
||||
{
|
||||
public CBaseDoor (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseEntity : CEntityInstance
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseEntity : CEntityInstance, ICBaseEntity
|
||||
{
|
||||
public CBaseEntity (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseFilter : CLogicalEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseFilter : CLogicalEntity, ICBaseFilter
|
||||
{
|
||||
public CBaseFilter (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseFire : CBaseEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseFire : CBaseEntity, ICBaseFire
|
||||
{
|
||||
public CBaseFire (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseFlex : CBaseAnimGraph
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseFlex : CBaseAnimGraph, ICBaseFlex
|
||||
{
|
||||
public CBaseFlex (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseFlexAlias_funCBaseFlex : CBaseFlex
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseFlexAlias_funCBaseFlex : CBaseFlex, ICBaseFlexAlias_funCBaseFlex
|
||||
{
|
||||
public CBaseFlexAlias_funCBaseFlex (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseGrenade : CBaseFlex
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseGrenade : CBaseFlex, ICBaseGrenade
|
||||
{
|
||||
public CBaseGrenade (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseIssue : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseIssue : NativeObject, ICBaseIssue
|
||||
{
|
||||
public CBaseIssue (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseModelEntity : CBaseEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseModelEntity : CBaseEntity, ICBaseModelEntity
|
||||
{
|
||||
public CBaseModelEntity (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseMoveBehavior : CPathKeyFrame
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseMoveBehavior : CPathKeyFrame, ICBaseMoveBehavior
|
||||
{
|
||||
public CBaseMoveBehavior (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBasePlatTrain : CBaseToggle
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBasePlatTrain : CBaseToggle, ICBasePlatTrain
|
||||
{
|
||||
public CBasePlatTrain (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBasePlayerController : CBaseEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBasePlayerController : CBaseEntity, ICBasePlayerController
|
||||
{
|
||||
public CBasePlayerController (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBasePlayerPawn : CBaseCombatCharacter
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBasePlayerPawn : CBaseCombatCharacter, ICBasePlayerPawn
|
||||
{
|
||||
public CBasePlayerPawn (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBasePlayerVData : CEntitySubclassVDataBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBasePlayerVData : CEntitySubclassVDataBase, ICBasePlayerVData
|
||||
{
|
||||
public CBasePlayerVData (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBasePlayerWeapon : CEconEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBasePlayerWeapon : CEconEntity, ICBasePlayerWeapon
|
||||
{
|
||||
public CBasePlayerWeapon (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBasePlayerWeaponVData : CEntitySubclassVDataBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBasePlayerWeaponVData : CEntitySubclassVDataBase, ICBasePlayerWeaponVData
|
||||
{
|
||||
public CBasePlayerWeaponVData (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseProp : CBaseAnimGraph
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseProp : CBaseAnimGraph, ICBaseProp
|
||||
{
|
||||
public CBaseProp (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBasePropDoor : CDynamicProp
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBasePropDoor : CDynamicProp, ICBasePropDoor
|
||||
{
|
||||
public CBasePropDoor (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseToggle : CBaseModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseToggle : CBaseModelEntity, ICBaseToggle
|
||||
{
|
||||
public CBaseToggle (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseTrigger : CBaseToggle
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseTrigger : CBaseToggle, ICBaseTrigger
|
||||
{
|
||||
public CBaseTrigger (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBaseViewModel : CBaseAnimGraph
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBaseViewModel : CBaseAnimGraph, ICBaseViewModel
|
||||
{
|
||||
public CBaseViewModel (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBeam : CBaseModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBeam : CBaseModelEntity, ICBeam
|
||||
{
|
||||
public CBeam (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBlood : CPointEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBlood : CPointEntity, ICBlood
|
||||
{
|
||||
public CBlood (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBodyComponent : CEntityComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBodyComponent : CEntityComponent, ICBodyComponent
|
||||
{
|
||||
public CBodyComponent (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBodyComponentBaseAnimGraph : CBodyComponentSkeletonInstance
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBodyComponentBaseAnimGraph : CBodyComponentSkeletonInstance, ICBodyComponentBaseAnimGraph
|
||||
{
|
||||
public CBodyComponentBaseAnimGraph (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBodyComponentBaseModelEntity : CBodyComponentSkeletonInstance
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBodyComponentBaseModelEntity : CBodyComponentSkeletonInstance, ICBodyComponentBaseModelEntity
|
||||
{
|
||||
public CBodyComponentBaseModelEntity (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBodyComponentPoint : CBodyComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBodyComponentPoint : CBodyComponent, ICBodyComponentPoint
|
||||
{
|
||||
public CBodyComponentPoint (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBodyComponentSkeletonInstance : CBodyComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBodyComponentSkeletonInstance : CBodyComponent, ICBodyComponentSkeletonInstance
|
||||
{
|
||||
public CBodyComponentSkeletonInstance (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBombTarget : CBaseTrigger
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBombTarget : CBaseTrigger, ICBombTarget
|
||||
{
|
||||
public CBombTarget (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBot : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBot : NativeObject, ICBot
|
||||
{
|
||||
public CBot (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBreachCharge : CCSWeaponBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBreachCharge : CCSWeaponBase, ICBreachCharge
|
||||
{
|
||||
public CBreachCharge (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBreachChargeProjectile : CBaseGrenade
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBreachChargeProjectile : CBaseGrenade, ICBreachChargeProjectile
|
||||
{
|
||||
public CBreachChargeProjectile (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBreakable : CBaseModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBreakable : CBaseModelEntity, ICBreakable
|
||||
{
|
||||
public CBreakable (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBreakableProp : CBaseProp
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBreakableProp : CBaseProp, ICBreakableProp
|
||||
{
|
||||
public CBreakableProp (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBubbling : CBaseModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBubbling : CBaseModelEntity, ICBubbling
|
||||
{
|
||||
public CBubbling (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBumpMine : CCSWeaponBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBumpMine : CCSWeaponBase, ICBumpMine
|
||||
{
|
||||
public CBumpMine (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBumpMineProjectile : CBaseGrenade
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBumpMineProjectile : CBaseGrenade, ICBumpMineProjectile
|
||||
{
|
||||
public CBumpMineProjectile (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBuoyancyHelper : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBuoyancyHelper : NativeObject, ICBuoyancyHelper
|
||||
{
|
||||
public CBuoyancyHelper (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CBuyZone : CBaseTrigger
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CBuyZone : CBaseTrigger, ICBuyZone
|
||||
{
|
||||
public CBuyZone (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CC4 : CCSWeaponBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CC4 : CCSWeaponBase, ICC4
|
||||
{
|
||||
public CC4 (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSBot : CBot
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSBot : CBot, ICCSBot
|
||||
{
|
||||
public CCSBot (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGOViewModel : CPredictedViewModel
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGOViewModel : CPredictedViewModel, ICCSGOViewModel
|
||||
{
|
||||
public CCSGOViewModel (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_TeamIntroCharacterPosition : CCSGO_TeamPreviewCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_TeamIntroCharacterPosition : CCSGO_TeamPreviewCharacterPosition, ICCSGO_TeamIntroCharacterPosition
|
||||
{
|
||||
public CCSGO_TeamIntroCharacterPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_TeamIntroCounterTerroristPosition : CCSGO_TeamIntroCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_TeamIntroCounterTerroristPosition : CCSGO_TeamIntroCharacterPosition, ICCSGO_TeamIntroCounterTerroristPosition
|
||||
{
|
||||
public CCSGO_TeamIntroCounterTerroristPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_TeamIntroTerroristPosition : CCSGO_TeamIntroCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_TeamIntroTerroristPosition : CCSGO_TeamIntroCharacterPosition, ICCSGO_TeamIntroTerroristPosition
|
||||
{
|
||||
public CCSGO_TeamIntroTerroristPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_TeamPreviewCharacterPosition : CBaseEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_TeamPreviewCharacterPosition : CBaseEntity, ICCSGO_TeamPreviewCharacterPosition
|
||||
{
|
||||
public CCSGO_TeamPreviewCharacterPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_TeamSelectCharacterPosition : CCSGO_TeamPreviewCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_TeamSelectCharacterPosition : CCSGO_TeamPreviewCharacterPosition, ICCSGO_TeamSelectCharacterPosition
|
||||
{
|
||||
public CCSGO_TeamSelectCharacterPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_TeamSelectCounterTerroristPosition : CCSGO_TeamSelectCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_TeamSelectCounterTerroristPosition : CCSGO_TeamSelectCharacterPosition, ICCSGO_TeamSelectCounterTerroristPosition
|
||||
{
|
||||
public CCSGO_TeamSelectCounterTerroristPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_TeamSelectTerroristPosition : CCSGO_TeamSelectCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_TeamSelectTerroristPosition : CCSGO_TeamSelectCharacterPosition, ICCSGO_TeamSelectTerroristPosition
|
||||
{
|
||||
public CCSGO_TeamSelectTerroristPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_WingmanIntroCharacterPosition : CCSGO_TeamIntroCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_WingmanIntroCharacterPosition : CCSGO_TeamIntroCharacterPosition, ICCSGO_WingmanIntroCharacterPosition
|
||||
{
|
||||
public CCSGO_WingmanIntroCharacterPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_WingmanIntroCounterTerroristPosition : CCSGO_WingmanIntroCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_WingmanIntroCounterTerroristPosition : CCSGO_WingmanIntroCharacterPosition, ICCSGO_WingmanIntroCounterTerroristPosition
|
||||
{
|
||||
public CCSGO_WingmanIntroCounterTerroristPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGO_WingmanIntroTerroristPosition : CCSGO_WingmanIntroCharacterPosition
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGO_WingmanIntroTerroristPosition : CCSGO_WingmanIntroCharacterPosition, ICCSGO_WingmanIntroTerroristPosition
|
||||
{
|
||||
public CCSGO_WingmanIntroTerroristPosition (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGameModeRules : NativeObject
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGameModeRules : NativeObject, ICCSGameModeRules
|
||||
{
|
||||
public CCSGameModeRules (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGameModeRules_ArmsRace : CCSGameModeRules
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGameModeRules_ArmsRace : CCSGameModeRules, ICCSGameModeRules_ArmsRace
|
||||
{
|
||||
public CCSGameModeRules_ArmsRace (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGameModeRules_Deathmatch : CCSGameModeRules
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGameModeRules_Deathmatch : CCSGameModeRules, ICCSGameModeRules_Deathmatch
|
||||
{
|
||||
public CCSGameModeRules_Deathmatch (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGameModeRules_Noop : CCSGameModeRules
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGameModeRules_Noop : CCSGameModeRules, ICCSGameModeRules_Noop
|
||||
{
|
||||
public CCSGameModeRules_Noop (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGameRules : CTeamplayRules
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGameRules : CTeamplayRules, ICCSGameRules
|
||||
{
|
||||
public CCSGameRules (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSGameRulesProxy : CGameRulesProxy
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSGameRulesProxy : CGameRulesProxy, ICCSGameRulesProxy
|
||||
{
|
||||
public CCSGameRulesProxy (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSMinimapBoundary : CBaseEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSMinimapBoundary : CBaseEntity, ICCSMinimapBoundary
|
||||
{
|
||||
public CCSMinimapBoundary (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSObserverPawn : CCSPlayerPawnBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSObserverPawn : CCSPlayerPawnBase, ICCSObserverPawn
|
||||
{
|
||||
public CCSObserverPawn (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSObserver_CameraServices : CCSPlayerBase_CameraServices
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSObserver_CameraServices : CCSPlayerBase_CameraServices, ICCSObserver_CameraServices
|
||||
{
|
||||
public CCSObserver_CameraServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSObserver_MovementServices : CPlayer_MovementServices
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSObserver_MovementServices : CPlayer_MovementServices, ICCSObserver_MovementServices
|
||||
{
|
||||
public CCSObserver_MovementServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSObserver_ObserverServices : CPlayer_ObserverServices
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSObserver_ObserverServices : CPlayer_ObserverServices, ICCSObserver_ObserverServices
|
||||
{
|
||||
public CCSObserver_ObserverServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSObserver_UseServices : CPlayer_UseServices
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSObserver_UseServices : CPlayer_UseServices, ICCSObserver_UseServices
|
||||
{
|
||||
public CCSObserver_UseServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSObserver_ViewModelServices : CPlayer_ViewModelServices
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSObserver_ViewModelServices : CPlayer_ViewModelServices, ICCSObserver_ViewModelServices
|
||||
{
|
||||
public CCSObserver_ViewModelServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlace : CServerOnlyModelEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlace : CServerOnlyModelEntity, ICCSPlace
|
||||
{
|
||||
public CCSPlace (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerBase_CameraServices : CPlayer_CameraServices
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerBase_CameraServices : CPlayer_CameraServices, ICCSPlayerBase_CameraServices
|
||||
{
|
||||
public CCSPlayerBase_CameraServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerController : CBasePlayerController
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerController : CBasePlayerController, ICCSPlayerController
|
||||
{
|
||||
public CCSPlayerController (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerController_ActionTrackingServices : CPlayerControllerComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerController_ActionTrackingServices : CPlayerControllerComponent, ICCSPlayerController_ActionTrackingServices
|
||||
{
|
||||
public CCSPlayerController_ActionTrackingServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerController_DamageServices : CPlayerControllerComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerController_DamageServices : CPlayerControllerComponent, ICCSPlayerController_DamageServices
|
||||
{
|
||||
public CCSPlayerController_DamageServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerController_InGameMoneyServices : CPlayerControllerComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerController_InGameMoneyServices : CPlayerControllerComponent, ICCSPlayerController_InGameMoneyServices
|
||||
{
|
||||
public CCSPlayerController_InGameMoneyServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerController_InventoryServices : CPlayerControllerComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerController_InventoryServices : CPlayerControllerComponent, ICCSPlayerController_InventoryServices
|
||||
{
|
||||
public CCSPlayerController_InventoryServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerPawn : CCSPlayerPawnBase
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerPawn : CCSPlayerPawnBase, ICCSPlayerPawn
|
||||
{
|
||||
public CCSPlayerPawn (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerPawnBase : CBasePlayerPawn
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerPawnBase : CBasePlayerPawn, ICCSPlayerPawnBase
|
||||
{
|
||||
public CCSPlayerPawnBase (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayerResource : CBaseEntity
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayerResource : CBaseEntity, ICCSPlayerResource
|
||||
{
|
||||
public CCSPlayerResource (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayer_ActionTrackingServices : CPlayerPawnComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayer_ActionTrackingServices : CPlayerPawnComponent, ICCSPlayer_ActionTrackingServices
|
||||
{
|
||||
public CCSPlayer_ActionTrackingServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayer_BulletServices : CPlayerPawnComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayer_BulletServices : CPlayerPawnComponent, ICCSPlayer_BulletServices
|
||||
{
|
||||
public CCSPlayer_BulletServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayer_BuyServices : CPlayerPawnComponent
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayer_BuyServices : CPlayerPawnComponent, ICCSPlayer_BuyServices
|
||||
{
|
||||
public CCSPlayer_BuyServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
@@ -14,7 +14,8 @@ using CounterStrikeSharp.API.Core.Attributes;
|
||||
|
||||
namespace CounterStrikeSharp.API.Core;
|
||||
|
||||
public partial class CCSPlayer_CameraServices : CCSPlayerBase_CameraServices
|
||||
[GenerateAutomaticInterface]
|
||||
public partial class CCSPlayer_CameraServices : CCSPlayerBase_CameraServices, ICCSPlayer_CameraServices
|
||||
{
|
||||
public CCSPlayer_CameraServices (IntPtr pointer) : base(pointer) {}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user