VRHUDBase.h 363 B

12345678910111213141516171819202122
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2. #pragma once
  3. #include "CoreMinimal.h"
  4. #include "GameFramework/HUD.h"
  5. #include "VRHUDBase.generated.h"
  6. /**
  7. *
  8. */
  9. UCLASS()
  10. class TETREESEDEMO_API AVRHUDBase : public AHUD
  11. {
  12. GENERATED_BODY()
  13. public:
  14. UFUNCTION(BlueprintNativeEvent)
  15. void Test();
  16. void Test_Implementation();
  17. };