Skip to content
Snippets Groups Projects
Select Git revision
  • e6cb67b055f3f0e35f98c5d0509491ddfc3a3afa
  • 5.4 default protected
  • dev/5.4
  • dev/5.3_downgrade
  • dev/5.5
  • 5.3 protected
  • feature/present_barrier
7 results

ScalableConfigInterface.h

Blame
  • ScalableConfigInterface.h 342 B
    #pragma once
    
    #include "ScalableConfigInterface.generated.h"
    
    UINTERFACE(Blueprintable)
    class RWTHVRCLUSTER_API UScalableConfigInterface : public UInterface
    {
    	GENERATED_BODY()
    };
    
    class RWTHVRCLUSTER_API IScalableConfigInterface
    {
    	GENERATED_BODY()
    
    public:
    	UFUNCTION(BlueprintImplementableEvent)
    	void OnScaleChanged(float NewScale);
    };