Aura.Channel.World.Entities.Prop.GetEmptyBehavior C# (CSharp) Method

GetEmptyBehavior() public static method

Returns a prop behavior that doesn't do anything.
Use to prevent unimplemented messages.
public static GetEmptyBehavior ( ) : PropFunc
return PropFunc
		public static PropFunc GetEmptyBehavior()
		{
			return (creature, prop) =>
			{
			};
		}