B:BD[
9.619] → [
8.4610:4640]
∅:D[
8.4640] → [
9.649:677]
B:BD[
9.649] → [
9.649:677]
B:BD[
9.677] → [
8.4641:4678]
∅:D[
8.4678] → [
9.713:789]
B:BD[
9.713] → [
9.713:789]
B:BD[
9.789] → [
8.4679:4831]
∅:D[
8.4831] → [
9.816:829]
B:BD[
9.816] → [
9.816:829]
B:BD[
9.829] → [
8.4832:4893]
∅:D[
8.4893] → [
9.862:873]
∅:D[
10.1812] → [
9.862:873]
B:BD[
9.862] → [
9.862:873]
B:BD[
9.873] → [
8.4894:4896]
type QuestFactoryConfig = {};
export class QuestFactory {
public config: QuestFactoryConfig;
constructor(config: QuestFactoryConfig) {
this.config = config;
}
public create(
resourceType: ResourceType,
resourceAmount: number,
description: string = ""
): Quest {
console.log(resourceAmount);
return {
description,
resourceType,
resourceAmount,
};
}
}
// type QuestFactoryConfig = {};
// export class QuestFactory {
// public config: QuestFactoryConfig;
//
// constructor(config: QuestFactoryConfig) {
// this.config = config;
// }
//
// public create(
// resourceType: ResourceType,
// resourceAmount: number,
// description: string = ""
// ): Quest {
// // console.log(resourceAmount);
// return {
// index,
// description,
// resourceType,
// resourceAmount,
// };
// }
// }
//