Console client: Adding support for additional network packets (avatar handling). This is not specifically for use in the console, but for .NET based test cases.

This commit is contained in:
lotodore
2009-01-11 11:18:51 +00:00
parent d72cdb6873
commit 4f7cf0bdb2
11 changed files with 405 additions and 0 deletions
+15
View File
@@ -190,5 +190,20 @@ namespace pokerth_console
Console.WriteLine("Hint: Try using a different nickname.");
System.Environment.Exit(1);
}
public void AvatarBegin(uint id, uint fileSize, GameInfo.AvatarFileType type)
{
throw new NotImplementedException();
}
public void AvatarData(uint id, byte[] block)
{
throw new NotImplementedException();
}
public void AvatarEnd(uint id)
{
throw new NotImplementedException();
}
}
}