shaoxiadiablo/Assets/AGame/Scripts/Game/Stat/Stat_BaseAction.cs

23 lines
651 B
C#
Raw Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Game
// Author : Kimch
// Created : 2020-09-02
// Description :
// Last Modified By :
// Last Modified On :
// ***********************************************************************
// <copyright file= "Stat_IdleAction" company="Kimch"></copyright>
// <summary></summary>
// ***********************************************************************
namespace G
{
public class Stat_BaseAction : Stat_Base
{
protected float m_curAniLength;
public Stat_BaseAction(Stat_StateManager statMgr)
: base(statMgr)
{
}
}
}