player0.1
This commit is contained in:
parent
e5a20a508a
commit
78a2f9a012
1 changed files with 15 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue