workadventure/front/src/Stores/UserWokaPictureStore.ts

9 lines
236 B
TypeScript
Raw Normal View History

2021-11-30 19:10:35 +01:00
import { writable, Writable } from "svelte/store";
2021-11-26 22:16:01 +01:00
/**
2021-11-30 19:10:35 +01:00
* A store that contains the player avatar picture
2021-11-26 22:16:01 +01:00
*/
2021-11-30 19:10:35 +01:00
export class UserWokaPictureStore {
2021-12-04 16:29:28 +01:00
constructor(public picture: Writable<string | undefined> = writable(undefined)) {}
2021-12-01 11:20:37 +01:00
}