mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge pull request #1329 from Haselnussbomber/v9-internal-isdataready
This commit is contained in:
commit
7bcbcbb84d
2 changed files with 5 additions and 8 deletions
|
|
@ -131,6 +131,11 @@ public sealed class DataManager : IDisposable, IServiceType, IDataManager
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether Game Data is ready to be read.
|
||||
/// </summary>
|
||||
internal bool IsDataReady { get; private set; }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public ClientLanguage Language { get; private set; }
|
||||
|
||||
|
|
@ -147,9 +152,6 @@ public sealed class DataManager : IDisposable, IServiceType, IDataManager
|
|||
/// <inheritdoc/>
|
||||
public ExcelModule Excel => this.GameData.Excel;
|
||||
|
||||
/// <inheritdoc/>
|
||||
public bool IsDataReady { get; private set; }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public bool HasModifiedGameDataFiles { get; private set; }
|
||||
|
||||
|
|
|
|||
|
|
@ -38,11 +38,6 @@ public interface IDataManager
|
|||
/// </summary>
|
||||
public ExcelModule Excel { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether Game Data is ready to be read.
|
||||
/// </summary>
|
||||
public bool IsDataReady { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether the game data files have been modified by another third-party tool.
|
||||
/// </summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue