init
This commit is contained in:
17
Ubung/Van.cs
Normal file
17
Ubung/Van.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace Ubung;
|
||||
|
||||
internal class Van : Kombi
|
||||
{
|
||||
private bool ladefläche = false;
|
||||
|
||||
public bool Ladefläche
|
||||
{
|
||||
get => ladefläche;
|
||||
set
|
||||
{
|
||||
base.CountDors = value ? 2 : 5;
|
||||
|
||||
ladefläche = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user