companion pictures store
This commit is contained in:
parent
5efa17651c
commit
8eaacdf2e5
6 changed files with 110 additions and 7 deletions
8
front/src/Stores/UserCompanionPictureStore.ts
Normal file
8
front/src/Stores/UserCompanionPictureStore.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { writable, Writable } from "svelte/store";
|
||||
|
||||
/**
|
||||
* A store that contains the player companion picture
|
||||
*/
|
||||
export class UserCompanionPictureStore {
|
||||
constructor(public picture: Writable<string | undefined> = writable(undefined)) {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue