Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: add summary for nuget.
Browse files Browse the repository at this point in the history
So many methods need summary!
  • Loading branch information
ArchiDog1998 committed Apr 12, 2023
1 parent cc39811 commit 226536b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions RotationSolver.Basic/RotationSolver.Basic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
<PackageTags>FFXIV, FF14, Dalamud, Rotation</PackageTags>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>

<ItemGroup>
Expand Down
7 changes: 2 additions & 5 deletions RotationSolver.Basic/Service.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class Service : IDisposable
static float _lastTime = 0;
public static float CountDownTime { get; private set; }

public static GetChatBoxModuleDelegate GetChatBox { get; private set; }
private static GetChatBoxModuleDelegate GetChatBox { get; set; }

public Service()
{
Expand Down Expand Up @@ -112,9 +112,6 @@ public unsafe static IEnumerable<IntPtr> GetAddons<T>() where T : struct
.Where(ptr => ptr != IntPtr.Zero);
}

public unsafe static IntPtr GetAddon<T>() where T : struct
=> GetAddons<T>().FirstOrDefault();

public static PlayerCharacter Player => ClientState.LocalPlayer;
[PluginService]
public static ClientState ClientState { get; set; }
Expand Down Expand Up @@ -166,7 +163,7 @@ public unsafe static IntPtr GetAddon<T>() where T : struct
public static ClientLanguage Language => ClientState.ClientLanguage;


public delegate void GetChatBoxModuleDelegate(IntPtr uiModule, IntPtr message, IntPtr unused, byte a4);
private delegate void GetChatBoxModuleDelegate(IntPtr uiModule, IntPtr message, IntPtr unused, byte a4);


/// <summary>
Expand Down

0 comments on commit 226536b

Please sign in to comment.