795d161563
Stupid maride.
13 lines
155 B
C++
13 lines
155 B
C++
//
|
|
// mVertex.c
|
|
// game
|
|
//
|
|
// Created by maride on 02.04.16.
|
|
//
|
|
//
|
|
|
|
#include "mVertex.h"
|
|
|
|
void mVertex3fv(tVector3 v) {
|
|
glVertex3f(v.x, v.y, v.z);
|
|
} |