示例#1
0
文件: Main.cs 项目: ouroborose/LD40
    public void Scratch(Rash rash)
    {
        if (rash.m_scratchedThisFrame)
        {
            return;
        }

        rash.m_scratchedThisFrame = true;
        rash.Scratch();
        m_scratchedThisFrame.Add(rash);
        m_rashIntensity += m_scratchRashIntensityValue;
    }