IPropUser.cs

Interface IPropUser. Declares two methods OnPropGrabbed and OnPropReleased for types that react when a prop is grabbed or released.

using Sandbox;

public interface IPropUser
{
	void OnPropGrabbed();
	void OnPropReleased();
}