Files
Tony Ferguson 9176213619 Targeted Addons (#4924)
- Lets you create addons that target a game (your addon project needs ParentGame set, do this in the wizard/project settings)
- Code archives can load again if no precompiled dll is found
2026-07-02 16:48:19 +01:00

14 lines
167 B
C#

public class GameWeapon
{
public virtual string WeaponName => "Default";
public virtual void PrimaryAttack()
{
}
public virtual void SecondaryAttack()
{
}
}