mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-12 19:28:21 +00:00
9655f0ee45
fix compile issues
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
|