14 lines
273 B
C#
14 lines
273 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class FriendComponent:Entity
|
|||
|
{
|
|||
|
public static FriendComponent Instance;
|
|||
|
|
|||
|
public Dictionary<long, Friend> FriendDic = new Dictionary<long, Friend>();
|
|||
|
}
|
|||
|
}
|