Simplified the packet system

This commit is contained in:
Kayne Ruse
2013-06-24 22:59:06 +10:00
parent ebd8c5e6fc
commit 6d1ba24404
11 changed files with 163 additions and 215 deletions
+2 -4
View File
@@ -1,12 +1,10 @@
#include "vector2.hpp"
#include "packet.hpp"
#include <iostream>
using namespace std;
int main(int, char**) {
Vector2 v = {1, 1};
Vector2 a = 99 * v;
cout << a.x << ", " << a.y << endl;
Packet p;
return 0;
}