Create WeaponThrowable class

This commit is contained in:
baz 2023-09-13 17:17:28 +01:00
parent 04512d1717
commit 9abe8e1697
2 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,5 @@
// Fill out your copyright notice in the Description page of Project Settings.
#include "WeaponThrowable.h"

View File

@ -0,0 +1,17 @@
// Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Throwable.h"
#include "WeaponThrowable.generated.h"
/**
*
*/
UCLASS()
class NAKATOMI_API AWeaponThrowable : public AThrowable
{
GENERATED_BODY()
};