forked from julianperrott/WowClassicGrindBot
-
-
Notifications
You must be signed in to change notification settings - Fork 129
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 #550 from Xian55/fix/549
Fix Screen was not captured during configuration mode
- Loading branch information
Showing
6 changed files
with
63 additions
and
90 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 |
---|---|---|
@@ -1,22 +1,23 @@ | ||
using System; | ||
|
||
using SixLabors.ImageSharp; | ||
|
||
namespace Core; | ||
|
||
public readonly struct DataFrameConfig | ||
public readonly record struct DataFrameConfig | ||
{ | ||
public int Version { get; } | ||
public Version addonVersion { get; } | ||
public Rectangle rect { get; } | ||
public DataFrameMeta meta { get; } | ||
public DataFrame[] frames { get; } | ||
public Version AddonVersion { get; } | ||
public Rectangle Rect { get; } | ||
public DataFrameMeta Meta { get; } | ||
public DataFrame[] Frames { get; } | ||
|
||
public DataFrameConfig(int version, Version addonVersion, Rectangle rect, DataFrameMeta meta, DataFrame[] frames) | ||
{ | ||
Version = version; | ||
this.addonVersion = addonVersion; | ||
this.rect = rect; | ||
this.meta = meta; | ||
this.frames = frames; | ||
this.AddonVersion = addonVersion; | ||
this.Rect = rect; | ||
this.Meta = meta; | ||
this.Frames = frames; | ||
} | ||
} |
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
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