Skip to content

Commit

Permalink
Not using these anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
cinderblocks committed Jan 29, 2025
1 parent 73586e1 commit cb4375a
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions Radegast/GUI/Consoles/Inventory/CurrentOutfitFolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,31 +67,17 @@ private void RegisterClientEvents(GridClient client)
{
client.Network.SimChanged += Network_OnSimChanged;
client.Inventory.FolderUpdated += Inventory_FolderUpdated;
client.Inventory.ItemReceived += Inventory_ItemReceived;
client.Appearance.AppearanceSet += Appearance_AppearanceSet;
client.Objects.KillObject += Objects_KillObject;
}

private void UnregisterClientEvents(GridClient client)
{
client.Network.SimChanged -= Network_OnSimChanged;
client.Inventory.FolderUpdated -= Inventory_FolderUpdated;
client.Inventory.ItemReceived -= Inventory_ItemReceived;
client.Appearance.AppearanceSet -= Appearance_AppearanceSet;
client.Objects.KillObject -= Objects_KillObject;
InitializedCOF = false;
}

private void Appearance_AppearanceSet(object sender, AppearanceSetEventArgs e)
{

}

private void Inventory_ItemReceived(object sender, ItemReceivedEventArgs e)
{

}

private readonly object FolderSync = new object();

private void Inventory_FolderUpdated(object sender, FolderUpdatedEventArgs e)
Expand Down

0 comments on commit cb4375a

Please sign in to comment.