oops moving stdint to header file

This commit is contained in:
Philip Rosedale 2013-05-22 13:02:07 -07:00
parent a03d6f8d80
commit e411b41be7
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;