From 78a2f9a012946f39f3c948e4884ba790b8f20441 Mon Sep 17 00:00:00 2001 From: MARKPRO44 <119742977+MARKPRO4444@users.noreply.github.com> Date: Fri, 16 Aug 2024 11:43:06 +0300 Subject: [PATCH] player0.1 --- .../Entities/LivingEntities/Player/Player.cs | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs b/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs index a1333ea..39b9037 100644 --- a/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs +++ b/ZoFo/GameCore/GameObjects/Entities/LivingEntities/Player/Player.cs @@ -1,7 +1,21 @@ -using System; +using Microsoft.Xna.Framework; +using Microsoft.Xna.Framework.Graphics; +using System; +using ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient; namespace ZoFo.GameCore.GameObjects.Entities.LivingEntities.Player; public class Player : LivingEntity { + private int health; + Server server = new Server(); + public void Update(GameTime gameTime) + { + // server.AddData(); + } + + public void TextureLoad(SpriteBatch spriteBatch) + { + + } }