complete project with 4x4 table function
This commit is contained in:
parent
ae3370ac44
commit
9cb42200f3
130 changed files with 3706 additions and 2 deletions
32
Chaser/ChaserLibrary/Beast.cs
Normal file
32
Chaser/ChaserLibrary/Beast.cs
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ChaserLibrary
|
||||
{
|
||||
public class Beast : Entity
|
||||
{
|
||||
private Player PlayerToKill;
|
||||
|
||||
public Beast(double x, double) : base(x, y)
|
||||
{
|
||||
|
||||
}
|
||||
public void ChangeVelocity()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public override void Update()
|
||||
{
|
||||
ChangeVelocity();
|
||||
Move();
|
||||
}
|
||||
public override void Draw()
|
||||
{
|
||||
Painter?.PaintCross(X, Y);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue