Skip to content

Commit

Permalink
Rename ISessionManagerAPI to ISessionManager
Browse files Browse the repository at this point in the history
  • Loading branch information
SokyranTheDragon committed Nov 10, 2023
1 parent d12a6cf commit bc5d2e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Client/Experimental/ISessionManagerAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Multiplayer.Client.Experimental;

public interface ISessionManagerAPI
public interface ISessionManager
{
IReadOnlyList<ISession> AllSessions { get; }
IReadOnlyList<IExposableSession> ExposableSessions { get; }
Expand Down
2 changes: 1 addition & 1 deletion Source/Client/Persistent/SessionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Multiplayer.Client.Persistent;

public class SessionManager : IHasSemiPersistentData, ISessionManagerAPI
public class SessionManager : IHasSemiPersistentData, ISessionManager
{
public IReadOnlyList<ISession> AllSessions => allSessions.AsReadOnly();
public IReadOnlyList<IExposableSession> ExposableSessions => exposableSessions.AsReadOnly();
Expand Down

0 comments on commit bc5d2e2

Please sign in to comment.