mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
18 lines
353 B
C#
18 lines
353 B
C#
|
namespace QSB.Utility
|
|||
|
{
|
|||
|
public static class QSBExtensions
|
|||
|
{
|
|||
|
public static void ChangeEquipState(this PlayerTool tool, bool equipState)
|
|||
|
{
|
|||
|
if (equipState)
|
|||
|
{
|
|||
|
tool.EquipTool();
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
tool.UnequipTool();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|