alexander bt fixed

This commit is contained in:
IDONTSUDO 2024-06-10 15:16:30 +03:00
parent 61118a7423
commit 8f8fc3107d
46 changed files with 1109 additions and 304 deletions

View file

@ -26,11 +26,14 @@ export interface ISkill {
xxx: IXxx;
}
export interface IWeightsDependency {
weights_name:string;
weights_name: string;
object_name: string;
weights_file: string;
dimensions: number[];
}
export interface IDeviceDependency {
sid: string;
}
export interface IParam {
type: string;
@ -195,7 +198,7 @@ export class SkillModel implements ISkill {
}
export class SkillDependency implements IDependency {
constructor(public skills: ISkillDependency[]) {}
constructor(public skills: ISkillDependency[]) { }
static empty() {
return new SkillDependency([]);
}