20 lines
282 B
C
20 lines
282 B
C
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "Weapon.h"
|
||
|
#include "ProjectileWeapon.generated.h"
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
UCLASS()
|
||
|
class BLASTER_API AProjectileWeapon : public AWeapon
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
|
||
|
|
||
|
};
|