yodaaaaaa

This commit is contained in:
2025-04-24 11:12:53 +02:00
parent ce0424ff8b
commit 098b605799
7 changed files with 152 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
package chess.view.DDDrender;
import java.util.List;
public class DDDModel {
private final List<VertexArray> vaos;
public DDDModel(List<VertexArray> vaos) {
this.vaos = vaos;
}
public List<VertexArray> getVaos() {
return vaos;
}
}