NoteListRequestR() public static method

Sends note list to client.
public static NoteListRequestR ( MsgrClient client, List notes ) : void
client MsgrClient
notes List Set to null for negative response.
return void
コード例 #1
0
ファイル: MsgrHandlers.cs プロジェクト: anjhony6778/aura
        public void NoteListRequest(MsgrClient client, Packet packet)
        {
            var unkLong = packet.GetLong();

            var notes = MsgrServer.Instance.Database.GetNotes(client.User);

            Send.NoteListRequestR(client, notes);
        }