mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
[server] ChunkUpdateEvent -> OnChunkUpdate
This commit is contained in:
parent
4d09301187
commit
ce3197dd98
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ namespace Nibriboard.RippleSpace
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Fired when this chunk is updated.
|
/// Fired when this chunk is updated.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public event ChunkUpdateEvent ChunkUpdateEvent;
|
public event ChunkUpdateEvent OnChunkUpdate;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The time at which this chunk was loaded.
|
/// The time at which this chunk was loaded.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -177,7 +177,7 @@ namespace Nibriboard.RippleSpace
|
||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
ChunkUpdateEvent(this, new ChunkUpdateEventArgs() { UpdateType = ChunkUpdateType.Addition });
|
OnChunkUpdate(this, new ChunkUpdateEventArgs() { UpdateType = ChunkUpdateType.Addition });
|
||||||
}
|
}
|
||||||
|
|
||||||
public IEnumerator<DrawnLine> GetEnumerator()
|
public IEnumerator<DrawnLine> GetEnumerator()
|
||||||
|
|
Loading…
Reference in a new issue