2017-01-23 15:06:27 +11:00

32 lines
985 B
C#

// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
using System;
namespace ClassicalSharp.Events {
public class UserEvents : EventsBase {
//BlockChanging event_here; // ??
/// <summary> Raised when the user changes a block in the world. </summary>
public event EventHandler<BlockChangedEventArgs> BlockChanged;
public void RaiseBlockChanged(Vector3I coords, byte old, byte block) {
blockArgs.Coords = coords; blockArgs.OldBlock = old; blockArgs.Block = block;
Raise(BlockChanged, blockArgs);
}
BlockChangedEventArgs blockArgs = new BlockChangedEventArgs();
}
public sealed class BlockChangedEventArgs : EventArgs {
/// <summary> Location within the world the block was updated at. </summary>
public Vector3I Coords;
/// <summary> Block ID that was at the given location before. </summary>
public byte OldBlock;
/// <summary> Block ID that is now at the given location. </summary>
public byte Block;
}
}