little changes

This commit is contained in:
N4K 2023-08-17 17:14:23 +03:00
parent a21ef22451
commit 2ffd006f73
13 changed files with 66 additions and 1 deletions

View file

@ -75,5 +75,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -73,5 +73,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -47,5 +47,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -80,5 +80,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -37,5 +37,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -41,5 +41,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -60,6 +60,12 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
velocity.X = monster_speed;
}
}
public override void Target()
{
throw new NotImplementedException();
}
public override void Update(GameTime gameTime)
{
base.Update(gameTime);

View file

@ -62,6 +62,12 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
}
currentTime++;
}
public override void Target()
{
throw new NotImplementedException();
}
public override void Update(GameTime gameTime)
{
base.Update(gameTime);

View file

@ -39,5 +39,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -144,6 +144,9 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
}
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -42,5 +42,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -73,5 +73,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
public override void Attack(GameTime gameTime)
{
}
public override void Target()
{
throw new NotImplementedException();
}
}
}

View file

@ -112,5 +112,10 @@ namespace DangerousD.GameCore.GameObjects.LivingEntities.Monsters
{
throw new NotImplementedException();
}
public override void Target()
{
throw new NotImplementedException();
}
}
}