123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #pragma once
- #include <string>
- namespace WwiseGTE
- {
- struct VertexAttribute
- {
- VertexAttribute(std::string inSemantic = "", void* inSource = nullptr, size_t inStride = 0)
- :
- semantic(inSemantic),
- source(inSource),
- stride(inStride)
- {
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
- std::string semantic;
- void* source;
- size_t stride;
- };
- }
|