mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
* Bump version to 0.9.10.1 * Bump Microsoft.Web.WebView2 from 1.0.3719.77 to 1.0.3800.47 (#1442) --- updated-dependencies: - dependency-name: Microsoft.Web.WebView2 dependency-version: 1.0.3800.47 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Improve mod view responsiveness (#1443) * Improve application launcher logging (Closes #1441) (#1444) * Damage modifier 0x248 (Closes #1438) (#1445) * Initial commit * Setup generator * Progress * Update generator * Initial commit * Setup generator * Progress * Update generator * Fix library loading * Move code to gwca * Fix leave party * Disable console on Release * Add more exports to gwca * Upgrade gwca * Fixes to character selector * Fix GetWindowHandle * Move character selector to frame based * Fix config spamming --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
28 lines
536 B
C#
28 lines
536 B
C#
using Daybreak.API.Interop;
|
|
|
|
namespace Daybreak.API.Models;
|
|
|
|
[GWCAEquivalent("Channel")]
|
|
public enum Channel : uint
|
|
{
|
|
Alliance = 0,
|
|
Allies = 1, // coop with two groups for instance.
|
|
GWCA1 = 2,
|
|
All = 3,
|
|
GWCA2 = 4,
|
|
Moderator = 5,
|
|
Emote = 6,
|
|
Warning = 7, // shows in the middle of the screen and does not parse <c> tags
|
|
GWCA3 = 8,
|
|
Guild = 9,
|
|
Global = 10,
|
|
Group = 11,
|
|
Trade = 12,
|
|
Advisory = 13,
|
|
Whisper = 14,
|
|
Count,
|
|
|
|
// non-standard channel, but useful.
|
|
Command
|
|
};
|