123456789101112131415 |
- // Fill out your copyright notice in the Description page of Project Settings.
- #include "VRHUDBase.h"
- #include "Kismet/KismetSystemLibrary.h"
- void AVRHUDBase::Test_Implementation(int value) {
- UKismetSystemLibrary::PrintString(GetWorld(), TEXT("AVRHUDBase::Test_Implementation"));
- }
- void AVRHUDBase::UpdateProgress_Implementation(int value) {
- UKismetSystemLibrary::PrintString(GetWorld(), TEXT("AVRHUDBase::UpdateProgress_Implementation"));
- }
|