2023-08-28 21:23:13 +02:00
|
|
|
#pragma once
|
|
|
|
|
#include "GraphicsResources.h"
|
|
|
|
|
|
|
|
|
|
namespace Seele
|
|
|
|
|
{
|
|
|
|
|
class VertexData
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
private:
|
2023-10-07 19:29:53 +02:00
|
|
|
Gfx::PShaderBuffer positions;
|
2023-08-28 21:23:13 +02:00
|
|
|
};
|
2023-10-07 19:29:53 +02:00
|
|
|
DEFINE_REF(VertexData)
|
2023-08-28 21:23:13 +02:00
|
|
|
}
|