mirror of
https://github.com/bvanroll/cs-oo-project.git
synced 2025-08-29 20:12:40 +00:00
42 lines
765 B
C#
42 lines
765 B
C#
using Globals.classes;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Globals.Classes
|
|
{
|
|
public class PloegInMatch : Ploeg
|
|
{
|
|
|
|
|
|
public int score;
|
|
|
|
public PloegInMatch(int score)
|
|
{
|
|
this.score = score;
|
|
}
|
|
|
|
public override zegMijnNaam(string naam)
|
|
{
|
|
return "blabla " + naam;
|
|
}
|
|
|
|
public override bool Equals(object obj)
|
|
{
|
|
return base.Equals(obj);
|
|
}
|
|
|
|
public override int GetHashCode()
|
|
{
|
|
return base.GetHashCode();
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return base.ToString();
|
|
}
|
|
}
|
|
}
|