namespace Core.Controllers;
public class InRaidController
{
///
/// Save locationId to active profiles in-raid object AND app context
///
/// Session id
/// Register player request
public void AddPlayer(
string sessionId,
RegisterPlayerRequestData info)
{
throw new NotImplementedException();
}
///
/// Handle raid/profile/scavsave
/// Save profile state to disk
/// Handles pmc/pscav
///
///
///
public void SavePostRaidProfileForScav(
ScavSaveRequestData offRaidProfileData,
string sessionId)
{
throw new NotImplementedException();
}
///
/// Get the inraid config from configs/inraid.json
///
public void GetInRaidConfig()
{
throw new NotImplementedException();
}
///
///
///
///
///
///
public float GetTraitorScavHostileChance(
string url,
string sessionId)
{
throw new NotImplementedException();
}
///
///
///
///
///
///
public List GetBossConvertSettings(
string url,
string sessionId)
{
throw new NotImplementedException();
}
}