summaryrefslogtreecommitdiff
path: root/Runtime/Graphics/PolyLine.cpp
blob: 24686f976b9a6753c31a5cc482988999da620acb (plain)
1
2
3
4
5
6
7
8
9
#include "PolyLine.h"
#include "../Math/Vector3.h"
#include "Color.h"

struct PolyLineVBOLayout
{
	Internal::Vector3 position;
    Internal::Color32 color;
};