From da252a57cf9b86d22a18e6b11d4dbbd27bc65c4e Mon Sep 17 00:00:00 2001
From: RisaDev <151885272+RisaDev@users.noreply.github.com>
Date: Mon, 25 Mar 2024 02:07:35 +0300
Subject: [PATCH] Cleanup
---
CustomizePlus/Api/CustomizePlusIpc.Profile.cs | 2 --
CustomizePlus/Api/CustomizePlusIpc.cs | 7 +++++++
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/CustomizePlus/Api/CustomizePlusIpc.Profile.cs b/CustomizePlus/Api/CustomizePlusIpc.Profile.cs
index a19de9d..0e3e6ee 100644
--- a/CustomizePlus/Api/CustomizePlusIpc.Profile.cs
+++ b/CustomizePlus/Api/CustomizePlusIpc.Profile.cs
@@ -36,7 +36,6 @@ public partial class CustomizePlusIpc
/// Retrieve list of all user profiles
/// /!\ This might be somewhat heavy method to call, so please use with caution.
///
- ///
[EzIPC("Profile.GetList")]
private IList GetProfileList()
{
@@ -86,7 +85,6 @@ public partial class CustomizePlusIpc
///
/// Enable profile using its Unique ID. Does not work on temporary profiles.
///
- ///
[EzIPC("Profile.EnableByUniqueId")]
private int EnableProfileByUniqueId(Guid uniqueId)
{
diff --git a/CustomizePlus/Api/CustomizePlusIpc.cs b/CustomizePlus/Api/CustomizePlusIpc.cs
index 33d0762..82242e1 100644
--- a/CustomizePlus/Api/CustomizePlusIpc.cs
+++ b/CustomizePlus/Api/CustomizePlusIpc.cs
@@ -10,6 +10,13 @@ using System;
namespace CustomizePlus.Api;
+///
+/// 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.
+///
public partial class CustomizePlusIpc : IDisposable
{
private readonly DalamudPluginInterface _pluginInterface;