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

example.h 176 B

12345678910
  1. #ifndef EXAMPLE_H
  2. #define EXAMPLE_H
  3. #include <stdbool.h>
  4. bool exampleInit();
  5. bool exampleRender(int width, int height);
  6. void exampleFinish();
  7. #endif /* EXAMPLE_H */