1
0
Fork 0

[server] Create NibriClient.CanSee() method stub

This commit is contained in:
Starbeamrainbowlabs 2017-03-04 21:54:06 +00:00
parent b2be6e590b
commit c559e6eaef
1 changed files with 10 additions and 0 deletions

View File

@ -212,6 +212,16 @@ namespace Nibriboard.Client
return result;
}
/// <summary>
/// Determines whether this client can see the chunk at the specified chunk reference.
/// </summary>
/// <param name="chunkRef">The chunk reference to check the visibility of.</param>
/// <returns>Whether this client can see the chunk located at the specified chunk reference</returns>
public bool CanSee(ChunkReference chunkRef)
{
throw new NotImplementedException();
}
#region Message Handlers
/// <summary>
/// Handles an incoming handshake request. We should only receive one of these!