Changed ClientAPI to InteractionAPI.
This commit is contained in:
parent
2b5a43f95f
commit
4df970a542
@ -1,9 +0,0 @@
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Requests
|
||||
{
|
||||
public struct ServiceRequest
|
||||
{
|
||||
public ServiceManagerAction serviceManagerAction;
|
||||
}
|
||||
}
|
@ -1,9 +0,0 @@
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Responses
|
||||
{
|
||||
public struct DeltaResponse
|
||||
{
|
||||
public ServiceManagerTotal gameServiceDelta;
|
||||
}
|
||||
}
|
@ -1,8 +0,0 @@
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Responses
|
||||
{
|
||||
public struct ViewResponse {
|
||||
public ServiceManagerTotal state;
|
||||
}
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\GameServiceWarden.ModuleAPI\GameServiceWarden.ModuleAPI.csproj" />
|
||||
<ProjectReference Include="..\GameServiceWarden.ClientAPI\GameServiceWarden.ClientAPI.csproj" />
|
||||
<ProjectReference Include="..\GameServiceWarden.InteractionAPI\GameServiceWarden.InteractionAPI.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
@ -1,4 +1,4 @@
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.Core.Module
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.Core.Module
|
||||
{
|
||||
|
@ -2,7 +2,7 @@ using System;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Immutable;
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
using GameServiceWarden.Core.Persistence;
|
||||
using GameServiceWarden.ModuleAPI;
|
||||
using GameServiceWarden.Core.Collection;
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System.Diagnostics;
|
||||
using System.Text.Json;
|
||||
using GameServiceWarden.ClientAPI;
|
||||
using GameServiceWarden.ClientAPI.Communicable.Requests;
|
||||
using GameServiceWarden.InteractionAPI;
|
||||
using GameServiceWarden.InteractionAPI.Communicable.Requests;
|
||||
using GameServiceWarden.Core.Module;
|
||||
using GameServiceWarden.Core.Logging;
|
||||
|
||||
|
@ -7,9 +7,9 @@ using System.Net.Sockets;
|
||||
using System.Text.Json;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using GameServiceWarden.ClientAPI;
|
||||
using GameServiceWarden.ClientAPI.Communicable.Requests;
|
||||
using GameServiceWarden.ClientAPI.Communicable.Responses;
|
||||
using GameServiceWarden.InteractionAPI;
|
||||
using GameServiceWarden.InteractionAPI.Communicable.Requests;
|
||||
using GameServiceWarden.InteractionAPI.Communicable.Responses;
|
||||
using GameServiceWarden.Core.Logging;
|
||||
|
||||
namespace GameServiceWarden.Core.UI
|
||||
|
@ -1,7 +1,7 @@
|
||||
using System.Text.Json;
|
||||
using System.Threading.Tasks;
|
||||
using GameServiceWarden.ClientAPI;
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
using GameServiceWarden.InteractionAPI;
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
using GameServiceWarden.Core.Module;
|
||||
|
||||
namespace GameServiceWarden.Core.UI
|
||||
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI
|
||||
namespace GameServiceWarden.InteractionAPI
|
||||
{
|
||||
public enum CommunicableType : uint
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Requests
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Requests
|
||||
{
|
||||
public struct ConnectRequest
|
||||
{
|
@ -0,0 +1,9 @@
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Requests
|
||||
{
|
||||
public struct ServiceRequest
|
||||
{
|
||||
public ServiceManagerAction serviceManagerAction;
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
namespace GameServiceWarden.ClientAPI
|
||||
namespace GameServiceWarden.InteractionAPI
|
||||
{
|
||||
public struct DisconnectRequest
|
||||
{
|
@ -1,7 +1,7 @@
|
||||
using System;
|
||||
using System.IO.Pipes;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Requests
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Requests
|
||||
{
|
||||
public static class RequestHeader
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Responses
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Responses
|
||||
{
|
||||
public struct ConnectResponse
|
||||
{
|
@ -0,0 +1,9 @@
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Responses
|
||||
{
|
||||
public struct DeltaResponse
|
||||
{
|
||||
public ServiceManagerTotal gameServiceDelta;
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
namespace GameServiceWarden.ClientAPI
|
||||
namespace GameServiceWarden.InteractionAPI
|
||||
{
|
||||
public struct DisconnectResponse
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Responses
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Responses
|
||||
{
|
||||
public static class ResponseHeader
|
||||
{
|
@ -1,4 +1,4 @@
|
||||
namespace GameServiceWarden.ClientAPI.Communicable.Responses
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Responses
|
||||
{
|
||||
public struct UnexpectedRequestResponse
|
||||
{
|
@ -0,0 +1,8 @@
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
|
||||
namespace GameServiceWarden.InteractionAPI.Communicable.Responses
|
||||
{
|
||||
public struct ViewResponse {
|
||||
public ServiceManagerTotal state;
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
namespace GameServiceWarden.ClientAPI.Module
|
||||
namespace GameServiceWarden.InteractionAPI.Module
|
||||
{
|
||||
public struct ServiceManagerAction
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Module
|
||||
namespace GameServiceWarden.InteractionAPI.Module
|
||||
{
|
||||
public struct ServiceManagerDelta
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace GameServiceWarden.ClientAPI.Module
|
||||
namespace GameServiceWarden.InteractionAPI.Module
|
||||
{
|
||||
public struct ServiceManagerTotal
|
||||
{
|
@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using GameServiceWarden.ClientAPI.Module;
|
||||
using GameServiceWarden.InteractionAPI.Module;
|
||||
using GameServiceWarden.Core.Module;
|
||||
|
||||
namespace GameServiceWarden.Core.Tests.Modules
|
||||
|
Loading…
x
Reference in New Issue
Block a user