mirror of
https://github.com/TombEngine/TombEngine.git
synced 2025-05-02 17:57:59 +03:00

- No more enums.h, constants.h, macro.h, etc... - moved all structure in types.h to there respective file.
8 lines
102 B
C
8 lines
102 B
C
#pragma once
|
|
|
|
struct alignas(16) CStaticBuffer
|
|
{
|
|
Matrix World;
|
|
Vector4 Position;
|
|
Vector4 Color;
|
|
};
|