SAMP.NET/sampdotnet/API/EventData/Player/PlayerUpdateEventArgs.cs
2022-08-27 18:10:32 +01:00

28 lines
423 B
C#

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
};
};