Adding a playersStore
The playerStore can be useful to get the details of a given player from its ID.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import type {BodyResourceDescriptionInterface} from "../Entity/PlayerTextures";
|
||||
|
||||
export interface PlayerInterface {
|
||||
userId: number;
|
||||
name: string;
|
||||
characterLayers: BodyResourceDescriptionInterface[];
|
||||
visitCardUrl: string|null;
|
||||
companion: string|null;
|
||||
}
|
||||
Reference in New Issue
Block a user