bitburner-src/src/RemoteFileAPI/RemoteFileAPI.ts

17 lines
285 B
TypeScript
Raw Normal View History

2022-07-30 16:19:22 +02:00
import { Remote } from "./Remote";
class RemoteFileAPI {
server : Remote;
constructor(){
this.server = new Remote("localhost", 12525);
return;
}
enable() : void {
this.server.startConnection();
}
}
export const RFA = new RemoteFileAPI;