31 lines
487 B
C++
31 lines
487 B
C++
// Louis Hobbs | 2024-2025
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "ProjectileWeapon.h"
|
|
#include "KnifeWeapon.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS()
|
|
class VAMPIRES_API AKnifeWeapon : public AProjectileWeapon
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
AKnifeWeapon();
|
|
|
|
protected:
|
|
virtual void BeginPlay() override;
|
|
|
|
public:
|
|
virtual void FireWeaponAction_Implementation() override;
|
|
|
|
virtual bool UpgradeWeapon_Implementation() override;
|
|
|
|
protected:
|
|
virtual void FireProjectile() override;
|
|
};
|