Skip to content

Commit

Permalink
added typedefing
Browse files Browse the repository at this point in the history
  • Loading branch information
yatima1460 committed Jun 10, 2018
1 parent 8388282 commit 5a6be5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once


struct vector2i
typedef struct vector2i
{
int x;
int y;
};
} Vector2i;
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#pragma once

struct vector3i
typedef struct vector3i
{
int x;
int y;
int z;
};
} Vector3i;

0 comments on commit 5a6be5f

Please sign in to comment.