📅  最后修改于: 2022-03-11 14:48:57.911000             🧑  作者: Mango
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class HealthHelper : MonoBehaviour
{
public int MaxHealth - 100;
public int Health = 100;
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}