diff --git a/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h b/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h index f63a4956..29231fad 100644 --- a/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h +++ b/Source/SenseGlove/Public/SenseGlove/GameFramework/SGPawn.h @@ -54,8 +54,8 @@ class SENSEGLOVE_API ASGPawn : public APawn public: DECLARE_EVENT_FourParams( - ASGPawn, FGrabStateUpdatedEvent, const USGVirtualHandComponent*, - const AActor* ActorThumbCanGrab, const AActor* ActorIndexCanGrab, const AActor* ActorMiddleCanGrab); + ASGPawn, FGrabStateUpdatedEvent, + const USGVirtualHandComponent*, const AActor*, const AActor*, const AActor*); FGrabStateUpdatedEvent& OnGrabStateUpdated() { @@ -63,9 +63,8 @@ public: }; DECLARE_EVENT_SixParams( - ASGPawn, FTouchStateUpdatedEvent, const USGVirtualHandComponent*, - const AActor* ActorThumbTouching, const AActor* ActorIndexTouching, const AActor* ActorMiddleTouching, - const AActor* ActorRingTouching, const AActor* ActorPinkyTouching); + ASGPawn, FTouchStateUpdatedEvent, + const USGVirtualHandComponent*, const AActor*, const AActor*, const AActor*, const AActor*, const AActor*); FTouchStateUpdatedEvent& OnTouchStateUpdated() {