mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Commit files that didnt save
This commit is contained in:
parent
cca2c5decc
commit
3562c1dda6
4 changed files with 6 additions and 6 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Dalamud.Game.Gui.PartyFinder.Types
|
namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
{
|
{
|
||||||
|
|
@ -6,7 +6,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
/// Condition flags for the <see cref="PartyFinderGui"/> class.
|
/// Condition flags for the <see cref="PartyFinderGui"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum DutyConditionFlags : uint
|
public enum ConditionFlags : uint
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// No duty condition.
|
/// No duty condition.
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Duty type flags for the <see cref="PartyFinderGui"/> class.
|
/// Duty type flags for the <see cref="PartyFinderGui"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum PartyFinderDutyType
|
public enum DutyType
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// No duty type.
|
/// No duty type.
|
||||||
|
|
|
||||||
|
|
@ -49,7 +49,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
this.Category = (DutyCategory)listing.Category;
|
this.Category = (DutyCategory)listing.Category;
|
||||||
this.RawDuty = listing.Duty;
|
this.RawDuty = listing.Duty;
|
||||||
this.Duty = new Lazy<ContentFinderCondition>(() => dataManager.GetExcelSheet<ContentFinderCondition>().GetRow(listing.Duty));
|
this.Duty = new Lazy<ContentFinderCondition>(() => dataManager.GetExcelSheet<ContentFinderCondition>().GetRow(listing.Duty));
|
||||||
this.DutyType = (PartyFinderDutyType)listing.DutyType;
|
this.DutyType = (DutyType)listing.DutyType;
|
||||||
this.BeginnersWelcome = listing.BeginnersWelcome == 1;
|
this.BeginnersWelcome = listing.BeginnersWelcome == 1;
|
||||||
this.SecondsRemaining = listing.SecondsRemaining;
|
this.SecondsRemaining = listing.SecondsRemaining;
|
||||||
this.MinimumItemLevel = listing.MinimumItemLevel;
|
this.MinimumItemLevel = listing.MinimumItemLevel;
|
||||||
|
|
@ -116,7 +116,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the type of duty this listing is for.
|
/// Gets the type of duty this listing is for.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public PartyFinderDutyType DutyType { get; }
|
public DutyType DutyType { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a value indicating whether if this listing is beginner-friendly. Shown with a sprout icon in-game.
|
/// Gets a value indicating whether if this listing is beginner-friendly. Shown with a sprout icon in-game.
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ namespace Dalamud.Game.Gui.PartyFinder.Types
|
||||||
/// Search area flags for the <see cref="PartyFinderGui"/> class.
|
/// Search area flags for the <see cref="PartyFinderGui"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Flags]
|
[Flags]
|
||||||
public enum DutyFinderSearchAreaFlags : uint
|
public enum SearchAreaFlags : uint
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Datacenter.
|
/// Datacenter.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue