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