mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
export class CharacterClassModel {
|
|
constructor(
|
|
readonly name: string,
|
|
readonly head_style_count: number,
|
|
readonly hair_styles_count: number,
|
|
readonly hair_styles_with_accessory: Set<number>,
|
|
) {}
|
|
}
|