Interaction.cpp 274 B

123456789101112
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. #include "Interaction.h"
  3. void UInteraction::Interact()
  4. {
  5. if (GEngine)
  6. GEngine->AddOnScreenDebugMessage(-1, 15.0f, FColor::Yellow, "dummy interaction invoked");
  7. // do nothing
  8. }