Added the WebGpu Framework

This commit is contained in:
2026-01-04 13:21:35 +01:00
parent 3fe1c27ed0
commit 8f000e3b91
13 changed files with 4751 additions and 2 deletions

11
framework/Request.js Normal file
View File

@@ -0,0 +1,11 @@
export class Request {
constructor( method, payload = {} ) {
this.method = method; // method name to call on Controller, e.g. "Ping"
this.payload = payload; // any data for the method
}
}