VRHUDBase.cpp 450 B

123456789101112131415
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. #include "VRHUDBase.h"
  3. #include "Kismet/KismetSystemLibrary.h"
  4. void AVRHUDBase::Test_Implementation(int value) {
  5. UKismetSystemLibrary::PrintString(GetWorld(), TEXT("AVRHUDBase::Test_Implementation"));
  6. }
  7. void AVRHUDBase::UpdateProgress_Implementation(int value) {
  8. UKismetSystemLibrary::PrintString(GetWorld(), TEXT("AVRHUDBase::UpdateProgress_Implementation"));
  9. }