18 lines
334 B
C++
18 lines
334 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "LMWeapon.h"
|
|
#include "LMRadivolver.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(BlueprintType, Blueprintable)
|
|
class LEGUMEMIX_API ULMRadivolver : public ULMWeapon
|
|
{
|
|
GENERATED_BODY()
|
|
virtual void Fire() override;
|
|
};
|