declare const enum WeaponType {
    Sword = 0,
    Book = 1,
    Bow = 2,
    Stick = 3,
    Sword2 = 4
}
export default WeaponType;
