12 lines
248 B
C++
Executable file
12 lines
248 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "ThrowableItem.h"
|
|
#include "HolidayThrowableItem.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class AHolidayThrowableItem : public AThrowableItem {
|
|
GENERATED_BODY()
|
|
public:
|
|
AHolidayThrowableItem();
|
|
};
|
|
|