14 lines
170 B
C
14 lines
170 B
C
//
|
|
// Created by selim on 31.05.15.
|
|
//
|
|
|
|
#ifndef GLTEST_VERTEX_H
|
|
#define GLTEST_VERTEX_H
|
|
|
|
struct Vertex {
|
|
float coords[3];
|
|
float normal[3];
|
|
};
|
|
|
|
#endif //GLTEST_VERTEX_H
|