Packages

Simulates (NOT EMULATES) Farmbot's arduino firmware and hardware. The firmware is pretty stable and used in FarmbotOS's testing environment. The visual hardware simulator is very much a WIP.

Current section

Files

Jump to
farmbot_simulator src texture.h
Raw

src/texture.h

#ifndef TEXTURE_H
#define TEXTURE_H
#include <string>
#include <GL/glew.h>
class Texture
{
public:
Texture(const std::string& fileName);
void Bind();
virtual ~Texture();
protected:
private:
Texture(const Texture& texture) {}
void operator=(const Texture& texture) {}
GLuint m_texture;
};
#endif