possibility to import version + cpu usage optimization

This commit is contained in:
MathieuG-P
2023-01-23 00:56:49 +01:00
parent 2d60acce51
commit 0ff8e865aa
23 changed files with 307 additions and 72 deletions
+6 -3
View File
@@ -1,5 +1,9 @@
export interface BSVersion {
BSVersion: string,
export interface PartialBSVersion {
BSVersion: string,
name?: string
}
export interface BSVersion extends PartialBSVersion {
BSManifest?: string,
ReleaseURL?: string,
ReleaseImg?: string,
@@ -7,6 +11,5 @@ export interface BSVersion {
year?: string,
steam?: boolean,
oculus?: boolean,
name?: string,
color?: string
}