First commit

This commit is contained in:
2025-11-17 17:18:43 +01:00
parent 2286a3b782
commit bca5ef911b
905 changed files with 950521 additions and 2 deletions

39
engine/subEntity.js Executable file
View File

@@ -0,0 +1,39 @@
/*
* Copyright 2019, kaj dijkstra ,
* Author, Kaj Dijkstra.
* All rights reserved.
*
*/
/**
* sub Entity
**/
class subEntity {
subMeshes = [];
/**
* add subMesh
* @param {(submesh)} submesh
**/
addSubMesh(submesh) {
this.subMeshes.push(submesh);
}
/**
* get all submeshes
**/
getSubMeshes() {
return this.subMeshes;
}
/**
* parse subEntity (Deprecated)
* @param {(submesh)} submesh
**/
parse(submesh) {
}
};