📌  相关文章
📜  Assets\PlayerMovement.cs(5,44): error CS1003: Syntax error, ',' expected - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:57.911000             🧑  作者: Mango

代码示例3
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()
    {
        
    }
}