Register() public method

public Register ( string name, AllocOperationDelegate alloc ) : void
name string
alloc AllocOperationDelegate
return void
	public static void	Register( OperationLibrary library ) {
		library.Register( "PushBehavior", delegate() { return new PushBehaviorOperation(); } );
	}
	public static void	Register( OperationLibrary library ) {
		library.Register( "And", delegate() { return new AndOperation(); } );
	}
	public static void	Register( OperationLibrary library ) {
		library.Register( "Jump", delegate() { return new JumpOperation(); } );
	}