Files
SammelmappeOOP/zoo-besucher/Child.cs
2024-07-25 15:47:46 +02:00

18 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace zoo_besucher
{
internal class Child : Visitor
{
public Child()
{
this.visitorCount = 1;
this.entriy = 0;
}
}
}