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

36
engine/programInfo.js Executable file
View File

@@ -0,0 +1,36 @@
/**
* Kepler - Core
*
* All rights reserved.
*
* Author: Kaj Dijksta
*
**/
/**
* Program info Object
* Object preserved to store a glsl program
*/
class programInfo{
constructor() {
this.url;
this.program;
this.pragmas;
this.librarys;
this.rawData;
this.vertexShader;
this.fragmentShader;
this.vertexShaderData;
this.fragmentShaderData;
}
}
export {programInfo as default};