Interaction.h 307 B

123456789101112131415161718
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. #pragma once
  3. #include "CoreMinimal.h"
  4. #include "UObject/NoExportTypes.h"
  5. #include "Interaction.generated.h"
  6. /**
  7. *
  8. */
  9. UCLASS()
  10. class RAAN_API UInteraction : public UObject
  11. {
  12. GENERATED_BODY()
  13. virtual void Interact();
  14. };