mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-06-30 16:49:56 +00:00
12 lines
135 B
C++
12 lines
135 B
C++
#ifndef BRICK_H
|
|
#define BRICK_H
|
|
|
|
#include <cstdint>
|
|
|
|
struct Brick {
|
|
uint32_t designerID;
|
|
uint32_t materialID;
|
|
};
|
|
|
|
#endif //!BRICK_H
|