15 lines
280 B
C++
Executable file
15 lines
280 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/Interface.h"
|
|
#include "InputCompatible.generated.h"
|
|
|
|
UINTERFACE(MinimalAPI)
|
|
class UInputCompatible : public UInterface {
|
|
GENERATED_BODY()
|
|
};
|
|
|
|
class IInputCompatible : public IInterface {
|
|
GENERATED_BODY()
|
|
public:
|
|
};
|
|
|