15 lines
279 B
C++
Executable file
15 lines
279 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "PlaceableInterface.generated.h"
|
|
|
|
UINTERFACE()
|
|
class UPlaceableInterface : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IPlaceableInterface : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|