mirror of
https://github.com/ConjureETS/Human-Farm-Tycoon.git
synced 2026-03-24 18:31:07 +00:00
20 lines
255 B
C#
20 lines
255 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class Zombie{
|
|
|
|
private bool available;
|
|
|
|
public bool getIsAvailable()
|
|
{
|
|
return available;
|
|
}
|
|
|
|
public void setIsAvailable(bool a)
|
|
{
|
|
this.available = a;
|
|
}
|
|
|
|
|
|
}
|