Move source to src.

This commit is contained in:
Mike Bostock 2012-12-14 10:06:18 -08:00
parent 6f246722f9
commit 2442efc1a6
82 changed files with 13 additions and 236 deletions

View file

@ -1,28 +0,0 @@
// -*- C++ -*-
#ifndef MBOSTOCK_TEXTURE_H
#define MBOSTOCK_TEXTURE_H
#include <OpenGL/gl.h>
namespace mbostock {
class Texture {
public:
virtual ~Texture() {}
virtual void bind() const = 0;
};
class Textures {
public:
static const Texture& fromFile(const char* path);
static void initialize();
private:
Textures();
};
}
#endif