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:
parent
b2be6e590b
commit
c559e6eaef
1 changed files with 10 additions and 0 deletions
|
@ -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!
|
||||
|
|
Loading…
Reference in a new issue