forked from ArchiDog1998/RotationSolver
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #394 from FFXIV-CombatReborn/frameworkstyle
Refactor Configs and MajorUpdater for flexible framework updates
- Loading branch information
Showing
3 changed files
with
45 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
namespace RotationSolver.Basic.Data; | ||
|
||
/// <summary> | ||
/// The way the framework updates. | ||
/// </summary> | ||
public enum FrameworkStyle : byte | ||
{ | ||
/// <summary> | ||
/// On the game thread. | ||
/// </summary> | ||
[Description("On the game thread")] | ||
MainThread, | ||
|
||
/// <summary> | ||
/// Running outside of game thread. | ||
/// </summary> | ||
[Description("Running outside of game thread")] | ||
WorkTask, | ||
|
||
/// <summary> | ||
/// Running on Game Tick. | ||
/// </summary> | ||
[Description("Running on Game Tick")] | ||
RunOnTick, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters