public static GenRoom At(int gx, int gy, int width, int height, bool defaultFill = false) { GenRoom r = Sized(width, height, defaultFill); r.MoveBy(gx, gy); return(r); }