r2mods/ilspy_dump/ror2_csproj/EntityStates.Toolbot/IToolbotPrimarySkillState.cs

20 lines
342 B
C#
Raw Normal View History

2024-10-04 07:26:37 +00:00
using RoR2.Skills;
using UnityEngine;
namespace EntityStates.Toolbot;
public interface IToolbotPrimarySkillState : ISkillState
{
Transform muzzleTransform { get; set; }
string muzzleName { get; set; }
string baseMuzzleName { get; }
bool isInDualWield { get; set; }
int currentHand { get; set; }
SkillDef skillDef { get; set; }
}