Window.this

Windowの初期化

name: 画面のタイトル x: 画面左上のx座標 y: 画面左上のy座標 w: 画面の幅 h: 画面の高さ

  1. this(int w, int h)
  2. this(string name, int w, int h)
  3. this(string name, int x, int y, int w, int h)
  4. this(string name, int x, int y, int w, int h, WindowFlags flag)
    class Window
    this
    (
    in string name
    ,
    in int x
    ,
    in int y
    ,
    in int w
    ,
    in int h
    ,)

Meta