mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Framework namespace, properties
This commit is contained in:
parent
c7fd52d423
commit
6e66829c6d
2 changed files with 7 additions and 5 deletions
|
|
@ -5,13 +5,13 @@ using System.Linq;
|
|||
using System.Runtime.InteropServices;
|
||||
using System.Threading;
|
||||
|
||||
using Dalamud.Game.Internal.Gui;
|
||||
using Dalamud.Game.Internal.Network;
|
||||
using Dalamud.Game.Gui;
|
||||
using Dalamud.Game.Libc;
|
||||
using Dalamud.Game.Network;
|
||||
using Dalamud.Hooking;
|
||||
using Serilog;
|
||||
|
||||
namespace Dalamud.Game.Internal
|
||||
namespace Dalamud.Game
|
||||
{
|
||||
/// <summary>
|
||||
/// This class represents the Framework of the native game client and grants access to various subsystems.
|
||||
|
|
@ -90,7 +90,7 @@ namespace Dalamud.Game.Internal
|
|||
/// <summary>
|
||||
/// Gets the stats history mapping.
|
||||
/// </summary>
|
||||
public static Dictionary<string, List<double>> StatsHistory = new();
|
||||
public static Dictionary<string, List<double>> StatsHistory { get; } = new();
|
||||
|
||||
#region Subsystems
|
||||
|
||||
|
|
@ -1,7 +1,9 @@
|
|||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Dalamud.Game.Internal
|
||||
using Dalamud.Game.Internal;
|
||||
|
||||
namespace Dalamud.Game
|
||||
{
|
||||
/// <summary>
|
||||
/// The address resolver for the <see cref="Framework"/> class.
|
||||
Loading…
Add table
Add a link
Reference in a new issue