Profile editor

This commit is contained in:
2022-12-28 14:51:33 +00:00
parent aadc58a104
commit 00b0cecf6c
9 changed files with 140 additions and 26 deletions

View File

@ -45,8 +45,12 @@ export default class Connection {
console.log(e);
}
/**
* Send event on this connection
* @param {Event} e
*/
SendEvent(e) {
let req = ["EVENT", e];
let req = ["EVENT", e.ToObject()];
this._SendJson(req);
}