forked from aly/qstbak
qstcompanion v1.0.3
This commit is contained in:
parent
ca78750ba5
commit
ca577ad208
3 changed files with 24 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue