// "Therefore those skilled at the unorthodox
// are infinite as heaven and earth,
// inexhaustible as the great rivers.
// When they come to an end,
// they begin again,
// like the days and months;
// they die and are reborn,
// like the four seasons."
//
// - Sun Tsu,
// "The Art of War"
using TheArtOfDev.HtmlRenderer.Core;
namespace TheArtOfDev.HtmlRenderer.Adapters.Entities
{
///
/// Even class for handling keyboard events in .
///
public sealed class RMouseEvent
{
///
/// Is the left mouse button participated in the event
///
private readonly bool _leftButton;
///
/// Init.
///
public RMouseEvent(bool leftButton)
{
_leftButton = leftButton;
}
///
/// Is the left mouse button participated in the event
///
public bool LeftButton
{
get { return _leftButton; }
}
}
}