mal wieder rein kommen

This commit is contained in:
Cedric
2025-09-19 01:50:56 +02:00
parent 37b66c1d80
commit a79212b525
6 changed files with 74 additions and 0 deletions

7
src/cube.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "../include/cube.hpp"
cube::cube()
{
linkeecke = 12;
rechteecke = 33;
}

10
src/main.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <iostream>
#include "../include/cube.hpp"
int main()
{
std::cout << "so und nicht anders" << std::endl;
cube erstercube;
std::cout << erstercube.linkeecke << std::endl;
return 0;
}