BotanSS/net/events/EventArgs.js

12 lines
109 B
JavaScript
Raw Permalink Normal View History

2016-06-16 07:16:29 +00:00
"use strict";
class EventArgs
{
constructor()
{
this.Handled = false;
}
}
module.exports = EventArgs;