MOD Gui support.

This commit is contained in:
Robin E. R. Davies
2025-07-10 11:37:02 -04:00
parent e7cdd38056
commit 890368352f
45 changed files with 1971 additions and 806 deletions
+11
View File
@@ -1021,6 +1021,17 @@ export class UiPlugin implements Deserializable<UiPlugin> {
return null;
}
getFilePropertyByUri(patchPropertyUri: string): UiFileProperty | null {
for (let i = 0; i < this.fileProperties.length; ++i)
{
let fileProperty = this.fileProperties[i];
if (fileProperty.patchProperty === patchPropertyUri) {
return fileProperty;
}
}
return null;
}
uri: string = "";
name: string = "";
minorVersion: number = 0;