Added PostFrame, extract eventargs

This commit is contained in:
2016-06-16 15:16:29 +08:00
parent dcdd941f3b
commit cd2cce7e98
5 changed files with 162 additions and 31 deletions
+11
View File
@@ -0,0 +1,11 @@
"use strict";
class EventArgs
{
constructor()
{
this.Handled = false;
}
}
module.exports = EventArgs;