SRanipal Unreal SDK  1.3.2.0
SRanipal Unreal SDK document
SRanipal_Enums.h
1 // ========= Copyright 2019, HTC Corporation. All rights reserved. ===========
2 #include <CoreMinimal.h>
3 #include "Kismet/BlueprintFunctionLibrary.h"
4 #include "GameFramework/Actor.h"
5 
6 
7 #ifdef SRANIPAL_EXPORTS
8 #define SR_ANIPAL __declspec(dllexport)
9 #else
10 #define SR_ANIPAL __declspec(dllimport)
11 #endif
12 
13 #pragma once
14 namespace ViveSR {
18  namespace anipal {
19 
20  enum AnipalStatus {
21  ERROR = 0,
22  IDLE = 1,
23  WORKING = 2,
24  };
25  }
26 }
27 
Definition: SRanipal_API_Lip.h:13