Cleanup
This commit is contained in:
@@ -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)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user