22 lines
367 B
C#
Executable File
22 lines
367 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ET
|
|
{
|
|
|
|
public class FriendDestroySystem : DestroySystem<Friend>
|
|
{
|
|
public override void Destroy(Friend self)
|
|
{
|
|
self.FriendDic.Clear();
|
|
self.RequestList.Clear();
|
|
}
|
|
}
|
|
public static class FriendSystem
|
|
{
|
|
|
|
|
|
}
|
|
}
|