Skip to content

Commit

Permalink
fix unsigned commits
Browse files Browse the repository at this point in the history
  • Loading branch information
NickKhalow committed Sep 9, 2024
1 parent a8d461a commit 9d38064
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public class SDKMessageBusCommsAPIImplementation : CommunicationsControllerAPIIm

public IReadOnlyList<CommsPayload> SceneCommsMessages => messages;

public SDKMessageBusCommsAPIImplementation(ISceneData sceneData, ISceneCommunicationPipe sceneCommunicationPipe, IJsOperations jsOperations, ISceneStateProvider sceneStateProvider) : base(sceneData, sceneCommunicationPipe, jsOperations, sceneStateProvider) { }
public SDKMessageBusCommsAPIImplementation(IRealmData realmData, ISceneData sceneData, ISceneCommunicationPipe sceneCommunicationPipe, IJsOperations jsOperations, ISceneStateProvider sceneStateProvider)
: base(realmData, sceneData, sceneCommunicationPipe, jsOperations, sceneStateProvider) { }

public void ClearMessages()
{
Expand Down

0 comments on commit 9d38064

Please sign in to comment.