Files
SPT-Server-Build/Core/Callbacks/LocationCallbacks.cs
T

16 lines
446 B
C#

using Core.Models.Eft.Common;
namespace Core.Callbacks;
public class LocationCallbacks
{
public GetBodyResponseData<LocationsGenerateAllResponse> GetLocationData(string url, object info, string sessionID)
{
throw new NotImplementedException();
}
public GetBodyResponseData<LocationBase> GetLocation(string url, GetLocationRequestData info, string sessionID)
{
throw new NotImplementedException();
}
}