2D Run-and-gun shooter inspired by One Man's Doomsday, Counter-Strike, and Metal Slug.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

IZ_point2d.c 199 B

12345678
  1. #include "IZ_point2d.h"
  2. IZ_Point2D IZ_Point2DTranslate(IZ_Point2D point, f32 translate_x, f32 translate_y) {
  3. return (IZ_Point2D) {
  4. .x = point.x + translate_x,
  5. .y = point.y + translate_y,
  6. };
  7. }