コード例 #1
0
        private void DeleteMessage(object obj)
        {
            if (!(obj is int))
            {
                return;
            }

            if ((int)obj >= c_List.Count || (int)obj < 0)
            {
                return;
            }

            c_Info.DeleteMessage((Message)c_List[(int)obj]);
            NewGump();
        }