A photo manager for VRChat.

oops i meant to merge that

Changed files
+1 -15
src
Components
Structs
PhotoListElements
+1
changelog
··· 82 82 - Opening files on linux now works 83 83 - Fixed not rendering properly on linux 84 84 - Switch world data api to vrchat 85 + - Fixed icons being MASSIVE on linux 85 86 - Photos are in the correct order on linux now 86 87 87 88 Dev Stuff:
-15
src/Components/Structs/PhotoListElements/PhotoListPhoto.ts
··· 1 - <<<<<<< HEAD 2 1 import { Photo } from "../Photo"; 3 2 import { PhotoListElement } from "../PhotoListElement"; 4 3 import { PhotoListElementType } from "../PhotoListElementType"; ··· 11 10 this.Type = PhotoListElementType.PHOTO; 12 11 this.Photo = photo; 13 12 } 14 - ======= 15 - import { Photo } from "../Photo"; 16 - import { PhotoListElement } from "../PhotoListElement"; 17 - import { PhotoListElementType } from "../PhotoListElementType"; 18 - 19 - export class PhotoListPhoto extends PhotoListElement{ 20 - public Photo!: Photo; 21 - 22 - constructor( photo: Photo ){ 23 - super(); 24 - this.Type = PhotoListElementType.PHOTO; 25 - this.Photo = photo; 26 - } 27 - >>>>>>> e612756 (stuff) 28 13 }