SAMP.NET/sampdotnet/API/EventData/Player/PlayerUpdateEventArgs.cs

28 lines
423 B
C#
Raw Normal View History

2022-08-27 17:10:32 +00:00
using System;
namespace SAMP.API.EventData {
public class PlayerUpdateEventArgs : EventArgs {
#region Class Variables
private bool
m_bCancel;
#endregion
#region Accessors & Mutators
/// <summary>
/// Gets or sets whether the event should cancel.
/// </summary>
public bool Cancel {
get {
return this.m_bCancel;
} set {
this.m_bCancel = value;
}
}
#endregion
};
};