2021-03-06 03:35:23 +01:00
|
|
|
/**
|
|
|
|
* NOTE: we cannot get rid of this js file. I tried for 30 seconds and I couldn't get
|
|
|
|
* extension to work unless I kept this part of extension out of the ts file.
|
|
|
|
*/
|
2018-12-30 23:41:44 +01:00
|
|
|
|
2021-03-06 03:35:23 +01:00
|
|
|
import UWServer from './UWServer';
|
2020-03-08 18:38:09 +01:00
|
|
|
|
2018-01-26 00:09:08 +01:00
|
|
|
var BgVars = {
|
|
|
|
arIsActive: true,
|
2018-02-02 00:21:29 +01:00
|
|
|
hasVideos: false,
|
|
|
|
currentSite: ""
|
|
|
|
}
|
|
|
|
|
2021-03-06 03:35:23 +01:00
|
|
|
const server = new UWServer();
|
2020-05-16 21:35:24 +02:00
|
|
|
|
|
|
|
window.sendUnmarkPlayer = (message) => {
|
|
|
|
server.sendUnmarkPlayer(message)
|
|
|
|
}
|