mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-03-22 19:20:52 +00:00
reformat again
This commit is contained in:
parent
edafac4a56
commit
a697d85267
@ -22,12 +22,14 @@ namespace EpicTransport
|
|||||||
|
|
||||||
[Header("User Login")]
|
[Header("User Login")]
|
||||||
public bool authInterfaceLogin = false;
|
public bool authInterfaceLogin = false;
|
||||||
|
|
||||||
public Epic.OnlineServices.Auth.LoginCredentialType authInterfaceCredentialType = Epic.OnlineServices.Auth.LoginCredentialType.AccountPortal;
|
public Epic.OnlineServices.Auth.LoginCredentialType authInterfaceCredentialType = Epic.OnlineServices.Auth.LoginCredentialType.AccountPortal;
|
||||||
public uint devAuthToolPort = 7878;
|
public uint devAuthToolPort = 7878;
|
||||||
public string devAuthToolCredentialName = "";
|
public string devAuthToolCredentialName = "";
|
||||||
public ExternalCredentialType connectInterfaceCredentialType = ExternalCredentialType.DeviceidAccessToken;
|
public ExternalCredentialType connectInterfaceCredentialType = ExternalCredentialType.DeviceidAccessToken;
|
||||||
public string deviceModel = "PC Windows 64bit";
|
public string deviceModel = "PC Windows 64bit";
|
||||||
[SerializeField] private string displayName = "User";
|
[SerializeField] private string displayName = "User";
|
||||||
|
|
||||||
public static string DisplayName
|
public static string DisplayName
|
||||||
{
|
{
|
||||||
get => Instance.displayName;
|
get => Instance.displayName;
|
||||||
@ -39,6 +41,7 @@ namespace EpicTransport
|
|||||||
|
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
public bool collectPlayerMetrics = true;
|
public bool collectPlayerMetrics = true;
|
||||||
|
|
||||||
public static bool CollectPlayerMetrics => Instance.collectPlayerMetrics;
|
public static bool CollectPlayerMetrics => Instance.collectPlayerMetrics;
|
||||||
|
|
||||||
public bool checkForEpicLauncherAndRestart = false;
|
public bool checkForEpicLauncherAndRestart = false;
|
||||||
@ -97,6 +100,7 @@ namespace EpicTransport
|
|||||||
public static bool IsConnecting => Instance.isConnecting;
|
public static bool IsConnecting => Instance.isConnecting;
|
||||||
|
|
||||||
protected static EOSSDKComponent instance;
|
protected static EOSSDKComponent instance;
|
||||||
|
|
||||||
protected static EOSSDKComponent Instance
|
protected static EOSSDKComponent Instance
|
||||||
{
|
{
|
||||||
get
|
get
|
||||||
|
@ -39,6 +39,7 @@ namespace MirrorWeaver
|
|||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var instruction in method.Body.Instructions)
|
foreach (var instruction in method.Body.Instructions)
|
||||||
{
|
{
|
||||||
if (instruction.Operand is not GenericInstanceMethod calledMethod)
|
if (instruction.Operand is not GenericInstanceMethod calledMethod)
|
||||||
@ -47,7 +48,7 @@ namespace MirrorWeaver
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (calledMethod.DeclaringType.FullName == NetworkWriter_Write.DeclaringType.FullName &&
|
if (calledMethod.DeclaringType.FullName == NetworkWriter_Write.DeclaringType.FullName &&
|
||||||
calledMethod.Name == NetworkWriter_Write.Name)
|
calledMethod.Name == NetworkWriter_Write.Name)
|
||||||
{
|
{
|
||||||
var argType = calledMethod.GenericArguments[0];
|
var argType = calledMethod.GenericArguments[0];
|
||||||
|
|
||||||
@ -60,7 +61,7 @@ namespace MirrorWeaver
|
|||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
else if (calledMethod.DeclaringType.FullName == NetworkReader_Read.DeclaringType.FullName &&
|
else if (calledMethod.DeclaringType.FullName == NetworkReader_Read.DeclaringType.FullName &&
|
||||||
calledMethod.Name == NetworkReader_Read.Name)
|
calledMethod.Name == NetworkReader_Read.Name)
|
||||||
{
|
{
|
||||||
var argType = calledMethod.GenericArguments[0];
|
var argType = calledMethod.GenericArguments[0];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user