From db2534cb470d6b58646bd00cf3b28f57af050b88 Mon Sep 17 00:00:00 2001 From: artem Date: Fri, 26 Sep 2025 00:36:59 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=B4=D0=B5=D0=BB?= =?UTF-8?q?=D0=B0=D0=BB=20=D0=BA=D0=BE=D0=BD=D1=81=D1=82=D1=80=D1=83=D0=BA?= =?UTF-8?q?=D1=82=D0=BE=D1=80=20=D0=B8=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D0=BF=D0=BE=D0=BB=D0=B5=20=D1=81=20=D0=BE=D0=BF?= =?UTF-8?q?=D0=B8=D1=81=D0=B0=D0=BD=D0=B8=D0=B5=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 2048WindowsFormsApp/2048WindowsFormsApp/User.cs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/2048WindowsFormsApp/2048WindowsFormsApp/User.cs b/2048WindowsFormsApp/2048WindowsFormsApp/User.cs index eb45292..c65ebe1 100644 --- a/2048WindowsFormsApp/2048WindowsFormsApp/User.cs +++ b/2048WindowsFormsApp/2048WindowsFormsApp/User.cs @@ -9,11 +9,14 @@ namespace _2048WindowsFormsApp public class User { public string Name; + public string Description; public int Score = 0; - public User(string userName) + public User(string name, string description, int score) { - Name = userName; + Name = name; + Description = description; + Score = score; } public void AcceptUserScore(int bestScore)