19 lines
368 B
C#
19 lines
368 B
C#
using cfg;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace game
|
|
{
|
|
public class ToolBubbleGun : ToolForResponsiveCleaner
|
|
{
|
|
#region 生命周期
|
|
public override void InitTool()
|
|
{
|
|
base.InitTool();
|
|
m_Type = EventWashingTool.FoamSprayer;
|
|
}
|
|
#endregion
|
|
}
|
|
}
|