bitburner-src/src/Literature/Literature.ts

16 lines
330 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 {
2021-09-05 01:09:30 +02:00
title: string;
fn: string;
txt: string;
2021-03-14 07:08:24 +01:00
2021-09-05 01:09:30 +02:00
constructor(title: string, filename: string, txt: string) {
this.title = title;
this.fn = filename;
this.txt = txt;
}
}