Compare commits
2 Commits
146cc9d965
...
4d201d7652
Author | SHA1 | Date |
---|---|---|
|
4d201d7652 | |
|
b0f666b5ed |
|
@ -1,50 +1,7 @@
|
|||
using UnityEngine;
|
||||
using AsteroidGame.Interfaces;
|
||||
|
||||
namespace AsteroidGame.Entities.Enemies
|
||||
namespace AsteroidGame.Entities.Enemies.Scripts
|
||||
{
|
||||
public class EnemyBase : MonoBehaviour, IDamageable
|
||||
{
|
||||
// Start is called before the first frame update
|
||||
void Start()
|
||||
public class EnemyBase : EntityBase
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void ModifyHealth(int healthChange)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public void SetHealth(int newHealth)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public void SetMaxHealth(int newHealth)
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public int GetHealth()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public int GetMaxHealth()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
|
||||
public float GetHealthFactor()
|
||||
{
|
||||
throw new System.NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,7 +4,8 @@
|
|||
"references": [
|
||||
"GUID:bc7863ca0989b494d84426bfd28432fa",
|
||||
"GUID:857695c8a9ee988459c9b50e4e75e660",
|
||||
"GUID:17a5862fcd6383b4b97bad4dcb1e2e5d"
|
||||
"GUID:17a5862fcd6383b4b97bad4dcb1e2e5d",
|
||||
"GUID:f26d68a0bdefa1043b120b820f55e190"
|
||||
],
|
||||
"includePlatforms": [],
|
||||
"excludePlatforms": [],
|
||||
|
|
Loading…
Reference in New Issue