12 lines
251 B
C++
Executable file
12 lines
251 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Object.h"
|
|
#include "ValidatorStrategy.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable)
|
|
class FSD_API UValidatorStrategy : public UObject {
|
|
GENERATED_BODY()
|
|
public:
|
|
UValidatorStrategy();
|
|
};
|
|
|