7 lines
128 B
C#
7 lines
128 B
C#
|
namespace EntityStates.Scrapper;
|
||
|
|
||
|
public class Idle : ScrapperBaseState
|
||
|
{
|
||
|
protected override bool enableInteraction => true;
|
||
|
}
|