Redline/mVertex.cpp

13 lines
155 B
C++
Raw Permalink Normal View History

2016-04-02 15:18:11 +00:00
//
// mVertex.c
// game
//
// Created by maride on 02.04.16.
//
//
#include "mVertex.h"
void mVertex3fv(tVector3 v) {
2016-04-02 15:18:11 +00:00
glVertex3f(v.x, v.y, v.z);
}