Removed test files

This commit is contained in:
Zak Strange
2016-03-14 14:55:46 -07:00
parent 2f6c37bcc6
commit ef7d1f02cf
3 changed files with 0 additions and 57 deletions

17
main.c
View File

@@ -1,17 +0,0 @@
#include <conio.h>
#define HANDMADE_MATH_IMPLEMENTATION
#include "HandmadeMath.h"
int
main(int ArgC, char **ArgV)
{
vec2 VectorOne = V2(6.0f, 8.0f);
vec2 VectorTwo = V2(3.0f, 2.0f);
vec2 Result = DivideV2(VectorOne, VectorTwo);
_getch();
return(0);
}