1
0
Fork 0

[server] ChunkUpdateEvent -> OnChunkUpdate

This commit is contained in:
Starbeamrainbowlabs 2017-04-16 15:03:51 +01:00
parent 4d09301187
commit ce3197dd98
1 changed files with 2 additions and 2 deletions

View File

@ -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()