WwiseUnrealObjectHelper.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*******************************************************************************
  2. The content of this file includes portions of the proprietary AUDIOKINETIC Wwise
  3. Technology released in source code form as part of the game integration package.
  4. The content of this file may not be used without valid licenses to the
  5. AUDIOKINETIC Wwise Technology.
  6. Note that the use of the game engine is subject to the Unreal(R) Engine End User
  7. License Agreement at https://www.unrealengine.com/en-US/eula/unreal
  8. License Usage
  9. Licensees holding valid licenses to the AUDIOKINETIC Wwise Technology may use
  10. this file in accordance with the end user license agreement provided with the
  11. software or, alternatively, in accordance with the terms contained
  12. in a written agreement between you and Audiokinetic Inc.
  13. Copyright (c) 2023 Audiokinetic Inc.
  14. *******************************************************************************/
  15. #pragma once
  16. #include "AkInclude.h"
  17. #include "WwiseUnrealObjectHelper.generated.h"
  18. USTRUCT(BlueprintType, Meta = (Category = "Wwise|Types", DisplayName = "AkUint64"))
  19. struct FAkUInt64Wrapper
  20. {
  21. GENERATED_BODY()
  22. public:
  23. UPROPERTY(EditAnywhere, Category = "Value", DisplayName = "UInt64 Value")
  24. uint64 UInt64Value = 0;
  25. };
  26. USTRUCT(BlueprintType, Meta = (Category = "Wwise|Types", DisplayName = "AkUInt32"))
  27. struct FAkUInt32Wrapper
  28. {
  29. GENERATED_BODY()
  30. public:
  31. UPROPERTY(EditAnywhere, Category = "Value", DisplayName = "UInt32 Value")
  32. uint32 UInt32Value = 0;
  33. };
  34. USTRUCT(BlueprintType, Meta = (Category = "Wwise|Types", DisplayName = "AkOutputDeviceID"))
  35. struct FAkOutputDeviceID : public FAkUInt64Wrapper
  36. {
  37. GENERATED_BODY()
  38. };
  39. USTRUCT(BlueprintType, Meta = (Category = "Wwise|Types", DisplayName = "AkUniqueID"))
  40. struct FAkUniqueID : public FAkUInt32Wrapper
  41. {
  42. GENERATED_BODY()
  43. };