Compare commits
No commits in common. "4d201d76521db980784d296ae177cf4be159c9dc" and "146cc9d965d6dcb3e13ff5ac1af5b2ddd248683d" have entirely different histories.
4d201d7652
...
146cc9d965
|
@ -1,7 +1,50 @@
|
||||||
namespace AsteroidGame.Entities.Enemies.Scripts
|
using UnityEngine;
|
||||||
|
using AsteroidGame.Interfaces;
|
||||||
|
|
||||||
|
namespace AsteroidGame.Entities.Enemies
|
||||||
{
|
{
|
||||||
public class EnemyBase : EntityBase
|
public class EnemyBase : MonoBehaviour, IDamageable
|
||||||
{
|
{
|
||||||
|
// Start is called before the first frame update
|
||||||
|
void Start()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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,8 +4,7 @@
|
||||||
"references": [
|
"references": [
|
||||||
"GUID:bc7863ca0989b494d84426bfd28432fa",
|
"GUID:bc7863ca0989b494d84426bfd28432fa",
|
||||||
"GUID:857695c8a9ee988459c9b50e4e75e660",
|
"GUID:857695c8a9ee988459c9b50e4e75e660",
|
||||||
"GUID:17a5862fcd6383b4b97bad4dcb1e2e5d",
|
"GUID:17a5862fcd6383b4b97bad4dcb1e2e5d"
|
||||||
"GUID:f26d68a0bdefa1043b120b820f55e190"
|
|
||||||
],
|
],
|
||||||
"includePlatforms": [],
|
"includePlatforms": [],
|
||||||
"excludePlatforms": [],
|
"excludePlatforms": [],
|
||||||
|
|
Loading…
Reference in New Issue