angefangen, hab schon mal alle dateien erstellt

This commit is contained in:
Tobias Kachel 2026-05-10 19:03:07 +02:00
parent b636977ccd
commit 3b94f5d1b1
5 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# Klassen:
- Verkehrsmittel
- Posistion (int x, int y)
- bewegen(neue Posistion)
- Luftfahrzeuge
- max. Flughöhe
- Radfahrzeuge
- Anzahl Räder
- Pkw
- Anzahl Türen

View File

@ -0,0 +1,3 @@
#pragma once
class Luftfahrzeug{
};

3
6_Verkehrsmittel/PKW.h Normal file
View File

@ -0,0 +1,3 @@
#pragma once
class PKW{};

View File

@ -0,0 +1,3 @@
#pragma once
class Radfahrzeug{};

View File

@ -0,0 +1,4 @@
#pragma once
class Verkehrsmittel{
};