mirror of
https://github.com/Steffo99/beat-td.git
synced 2024-11-22 15:24:18 +00:00
11 lines
188 B
C#
11 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;
|
|||
|
|
|||
|
}
|