1
0
Fork 0
mirror of https://github.com/sbrl/Nibriboard.git synced 2018-01-10 21:33:49 +00:00

[server] Create NibriClient.CanSee() method stub

This commit is contained in:
Starbeamrainbowlabs 2017-03-04 21:54:06 +00:00
parent b2be6e590b
commit c559e6eaef

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!