コード例 #1
0
 public FriendRequestNotification(User u,LobbyClient lc, int id)
     : base(lc,id)
 {
     User = u;
 }
コード例 #2
0
ファイル: Chatting.cs プロジェクト: YoshiEnVerde/OCTGN
 public Chatting(LobbyClient c)
 {
     Parent = c;
     Rooms = new List<ChatRoom>();
     Rooms.Add(new ChatRoom(0));
 }