This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
2021-09-01 19:17:24 -05:00

18 lines
252 B
C++

#pragma once
#include "VertexArray.h"
#include "IndexBuffer.h"
namespace nf {
class Drawable {
public:
Drawable();
virtual void bind();
unsigned int getIndexCount();
~Drawable();
protected:
VertexArray* m_vao;
IndexBuffer* m_ib;
};
}