23 lines
452 B
C++
23 lines
452 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Definations.h"
|
|
#include "UObject/Object.h"
|
|
#include "FishingRodSKill_Base.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(Blueprintable)
|
|
class PROJECTFISH_API UFishingRodSKill_Base : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
public:
|
|
UFishingRodSKill_Base();
|
|
UFUNCTION(BlueprintImplementableEvent)
|
|
void Init(class APawnWithSkill* Owner);
|
|
|
|
};
|