コード例 #1
0
            /// <summary>
            /// Adds the specified item to process.
            /// </summary>
            public void AddItem(FateItem item)
            {
                if (items.Contains(item))
                {
                    return;
                }

                items.Add(item);
            }
コード例 #2
0
 /// <summary>
 /// Removes the specified item from process.
 /// </summary>
 public void RemoveItem(FateItem item)
 {
     items.Remove(item);
 }
コード例 #3
0
ファイル: FateFX.cs プロジェクト: jerryrox/Renko-L
 /// <summary>
 /// Removes the specified item from update queue.
 /// </summary>
 public static void RemoveItem(FateItem item)
 {
     I.updater.RemoveItem(item);
 }
コード例 #4
0
ファイル: FateFX.cs プロジェクト: jerryrox/Renko-L
 /// <summary>
 /// Registers the specified item to update queue.
 /// </summary>
 public static void RegisterItem(FateItem item)
 {
     I.updater.AddItem(item);
 }