-
Notifications
You must be signed in to change notification settings - Fork 8
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 #59 from Archomeda/feature/mumble-link-updates
Update Mumble Link with new fields and add support for custom names
- Loading branch information
Showing
12 changed files
with
325 additions
and
30 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
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
Binary file not shown.
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,54 @@ | ||
namespace Gw2Sharp.Models | ||
{ | ||
/// <summary> | ||
/// Represents a mount. | ||
/// Used by Mumble Link. | ||
/// </summary> | ||
public enum MountType : byte | ||
{ | ||
/// <summary> | ||
/// No mount. | ||
/// </summary> | ||
None, | ||
|
||
/// <summary> | ||
/// The jackal mount. | ||
/// </summary> | ||
Jackal, | ||
|
||
/// <summary> | ||
/// The griffon mount. | ||
/// </summary> | ||
Griffon, | ||
|
||
/// <summary> | ||
/// The springer mount. | ||
/// </summary> | ||
Springer, | ||
|
||
/// <summary> | ||
/// The skimmer mount. | ||
/// </summary> | ||
Skimmer, | ||
|
||
/// <summary> | ||
/// The raptor mount. | ||
/// </summary> | ||
Raptor, | ||
|
||
/// <summary> | ||
/// The roller beetle mount. | ||
/// </summary> | ||
RollerBeetle, | ||
|
||
/// <summary> | ||
/// The warclaw mount. | ||
/// </summary> | ||
Warclaw, | ||
|
||
/// <summary> | ||
/// The skyscale mount. | ||
/// </summary> | ||
Skyscale | ||
} | ||
} |
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
Oops, something went wrong.