import type { JournalEvent } from "../../JournalEvent.ts";
export interface BuyAmmo extends JournalEvent<"BuyAmmo"> {
    Cost: number;
}
