Merge pull request #384 from PhilipRosedale/master

moved include stdint to header file
This commit is contained in:
Philip Rosedale 2013-05-22 13:11:55 -07:00
commit fd9f600421
2 changed files with 1 additions and 1 deletions

View file

@ -12,7 +12,6 @@
#include <cstring>
#include <glm/glm.hpp>
#include "Log.h"
#include <stdint.h>
const float DELTA_TIME = 1.f / 60.f;
const float DECAY_RATE = 0.15f;

View file

@ -14,6 +14,7 @@
#include <glm/gtc/quaternion.hpp>
#include <cstring>
#include "world.h"
#include <stdint.h>
struct TouchState {
uint16_t x, y;