EssentialsPlugin.Utility.GridGroup.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public void Close( )
        {
            Wrapper.GameAction( ( ) =>
                                {
                                    foreach (MyCubeGrid grid in _grids)
                                    {
                                        if (grid.Physics == null || grid.Closed)
                                            continue;

                                        grid.Close( );
                                    }
                                } );
        }