1
0
Fork 0
forked from aly/qstbak

qstcompanion v1.0.3

This commit is contained in:
alydev 2025-12-04 04:40:03 +10:00
parent ca78750ba5
commit ca577ad208
3 changed files with 24 additions and 2 deletions

View file

@ -31,6 +31,8 @@ public class RotationState
private uint? _lastKnownQuestState;
private bool _isSyncOnlyMode;
public uint CurrentStopQuestId
{
get
@ -246,4 +248,22 @@ public class RotationState
}
}
}
public bool IsSyncOnlyMode
{
get
{
lock (_lock)
{
return _isSyncOnlyMode;
}
}
set
{
lock (_lock)
{
_isSyncOnlyMode = value;
}
}
}
}