borderlands2
Version:
Borderlands 2 weapon damage and DPS calculation library
10 lines (9 loc) • 342 B
TypeScript
import { StatType } from "../value_object/stat_type";
import { Weapon } from "../../weapon/interface/weapon";
import { Context } from "../../context";
export declare class StatService {
protected weapon: Weapon;
protected context: Context;
constructor(weapon: Weapon, context: Context);
getStat(statType: StatType): number;
}