smartuniverse/ts/smartuniverse.classes.universeconnectionmanager.ts

11 lines
324 B
TypeScript
Raw Normal View History

2019-04-30 17:16:03 +00:00
import * as plugins from './smartuniverse.plugins';
2019-06-06 20:22:45 +00:00
import { UniverseConnection } from './smartuniverse.classes.universeconnection';
2019-04-30 17:16:03 +00:00
/**
* manages connections to a universe
*/
export class UniverseConnectionManager {
2019-06-06 20:22:45 +00:00
public connectionMap = new plugins.lik.Objectmap<UniverseConnection>();
2019-04-30 17:16:03 +00:00
2019-06-06 20:22:45 +00:00
public addConnection() {}
2019-04-30 17:16:03 +00:00
}