bitburner-src/src/Literature/Literature.ts

15 lines
351 B
TypeScript
Raw Normal View History

2021-03-14 07:08:24 +01:00
/**
* Lore / world building literature files that can be found on servers.
* These files can be read by the player
*/
export class Literature {
title: string;
fn: string;
txt: string;
constructor(title: string, filename: string, txt: string) {
this.title = title;
this.fn = filename;
this.txt = txt;
}
}