player0.1

This commit is contained in:
MARKPRO44 2024-08-16 11:43:06 +03:00
parent e5a20a508a
commit 78a2f9a012

View file

@ -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)
{
}
}