Added some comments

Former-commit-id: 42fb1dd19abec2befd7cb065f794e4b765d1411e
This commit is contained in:
Lynix 2014-08-03 20:57:24 +02:00
parent 49b19cd6d1
commit 0415f32b86
1 changed files with 3 additions and 3 deletions

View File

@ -45,9 +45,9 @@ class NAZARA_API NzVertexDeclaration : public NzResource
struct Component
{
nzComponentType type;
bool enabled = false;
unsigned int offset;
nzComponentType type; // Le type de donnée
bool enabled = false; // Ce composant est-il activé ?/
unsigned int offset; // La position, en octets, de la première donnée
/*
** -Lynix: