This commit is contained in:
RisaDev
2024-03-25 02:07:35 +03:00
parent 941edb1023
commit da252a57cf
2 changed files with 7 additions and 2 deletions

View File

@@ -36,7 +36,6 @@ public partial class CustomizePlusIpc
/// Retrieve list of all user profiles /// Retrieve list of all user profiles
/// /!\ This might be somewhat heavy method to call, so please use with caution. /// /!\ This might be somewhat heavy method to call, so please use with caution.
/// </summary> /// </summary>
/// <returns></returns>
[EzIPC("Profile.GetList")] [EzIPC("Profile.GetList")]
private IList<IPCProfileDataTuple> GetProfileList() private IList<IPCProfileDataTuple> GetProfileList()
{ {
@@ -86,7 +85,6 @@ public partial class CustomizePlusIpc
/// <summary> /// <summary>
/// Enable profile using its Unique ID. Does not work on temporary profiles. /// Enable profile using its Unique ID. Does not work on temporary profiles.
/// </summary> /// </summary>
/// <param name="uniqueId"></param>
[EzIPC("Profile.EnableByUniqueId")] [EzIPC("Profile.EnableByUniqueId")]
private int EnableProfileByUniqueId(Guid uniqueId) private int EnableProfileByUniqueId(Guid uniqueId)
{ {

View File

@@ -10,6 +10,13 @@ using System;
namespace CustomizePlus.Api; namespace CustomizePlus.Api;
/// <summary>
/// Customize+ IPC.
/// All of the function/event names start with "CustomizePlus." prefix.
/// For example: CustomizePlus.Profile.GetList.
/// While Customize+ is using EzIPC to make it easier to work with IPC,
/// you are not required to use it to interact with the plugin.
/// </summary>
public partial class CustomizePlusIpc : IDisposable public partial class CustomizePlusIpc : IDisposable
{ {
private readonly DalamudPluginInterface _pluginInterface; private readonly DalamudPluginInterface _pluginInterface;