2025-02-05 23:12:03 +00:00
|
|
|
// Louis Hobbs | 2024-2025
|
2024-07-31 15:04:31 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
#include "ProjectileWeapon.h"
|
|
|
|
#include "KnifeWeapon.generated.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
UCLASS()
|
|
|
|
class VAMPIRES_API AKnifeWeapon : public AProjectileWeapon
|
|
|
|
{
|
|
|
|
GENERATED_BODY()
|
2025-04-15 21:22:59 +01:00
|
|
|
|
2024-07-31 15:04:31 +01:00
|
|
|
public:
|
|
|
|
AKnifeWeapon();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void BeginPlay() override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual void FireWeaponAction_Implementation() override;
|
2025-04-15 21:22:59 +01:00
|
|
|
|
|
|
|
virtual bool UpgradeWeapon_Implementation() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void FireProjectile() override;
|
2024-07-31 15:04:31 +01:00
|
|
|
};
|