Added documentation for object

This commit is contained in:
Robert 2021-01-22 01:53:05 +01:00
parent 7d3213166b
commit 16db47760c
2 changed files with 53 additions and 1 deletions

View file

@ -7,6 +7,11 @@ namespace oglu
{
}
Object::Object(const VertexArray& vao) :
VAO(vao)
{
}
Object::Object(const Object& other) :
VAO(other.VAO)
{