Window.this - multiple declarations

Function Window.this

Constructor for a window; needs at least a width and a height

this (
  int w,
  int h,
  derelict.sdl2.internal.sdl_types.SDL_WindowFlags flags = cast(SDL_WindowFlags)4,
  string title = "",
  int x = 805240832,
  int y = 805240832
);

Function Window.this

Creates the window from an already existing SDL_Window

this (
  derelict.sdl2.internal.sdl_types.SDL_Window* alreadyExisting
);