Platformer in OpenGL
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
115 B

5年前
  1. #pragma once
  2. struct Viewport {
  3. int width;
  4. int height;
  5. Viewport(int w, int h) {
  6. width = w;
  7. height = h;
  8. }
  9. };