mirror of
https://github.com/Steffo99/beat-td.git
synced 2024-11-22 07:14:19 +00:00
10 lines
188 B
C#
10 lines
188 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class EnemyStatus : MonoBehaviour {
|
|
|
|
public int livesCost = 1;
|
|
public int health = 10;
|
|
|
|
}
|