mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 06:51:36 +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();
|
|
}
|
|
}
|
|
}
|
|
}
|