feat(headless): complete portable single-session host
This commit is contained in:
parent
fbebb91848
commit
f8cb840fb1
30 changed files with 3571 additions and 32 deletions
|
|
@ -2,12 +2,18 @@ using AcDream.Core.Net;
|
|||
|
||||
namespace AcDream.Runtime.Session;
|
||||
|
||||
public sealed record LiveSessionCharacterSelector(
|
||||
int? ActiveIndex = null,
|
||||
uint? CharacterId = null,
|
||||
string? CharacterName = null);
|
||||
|
||||
public sealed record LiveSessionConnectOptions(
|
||||
bool Enabled,
|
||||
string Host,
|
||||
int Port,
|
||||
string User,
|
||||
string Password);
|
||||
string Password,
|
||||
LiveSessionCharacterSelector? Character = null);
|
||||
|
||||
public interface IRuntimeLiveSessionFramePhase
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue