Skip to content

Instantly share code, notes, and snippets.

@Balastrong
Created August 17, 2022 08:28
Show Gist options
  • Save Balastrong/4eeb096cd9726efe81c38c0895494d40 to your computer and use it in GitHub Desktop.
Save Balastrong/4eeb096cd9726efe81c38c0895494d40 to your computer and use it in GitHub Desktop.
wrand - randomGenerator empty
export class RandomPicker<T> {
constructor(private items: WeightedItem<T>[]) { }
pick(): T {
throw new Error("Not Implemented!");
}
pickMany(amount: number): T[] {
throw new Error("Not Implemented!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment