2using System.Collections.Generic;
4using System.Reflection;
5using System.Diagnostics;
6using System.Runtime.CompilerServices;
10using Microsoft.Xna.Framework;
11using Microsoft.Xna.Framework.Input;
12using Microsoft.Xna.Framework.Graphics;
20 public partial class CUIComponent : IDisposable
22 public void AttachTo(Item item, Action<Item, CUIComponent> callback =
null) => AttachedItems.Connect(item,
this, callback);
23 public AttachedItemHandle AttachedItemHandle {
get;
set; }