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

11 lines
197 B
C#

public class CustomWeapon : GameWeapon
{
public override string WeaponName => "Custom Sword";
public override void PrimaryAttack()
{
// Custom implementation using parent package types
}
}