mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-07 21:38:01 -05:00
15 lines
305 B
C++
15 lines
305 B
C++
#pragma once
|
|
|
|
#include "DefinitionWithMembers.h"
|
|
|
|
class StructDefinition final : public DefinitionWithMembers
|
|
{
|
|
protected:
|
|
void CalculateSize() override;
|
|
|
|
public:
|
|
StructDefinition(std::string _namespace, std::string name, int pack);
|
|
|
|
_NODISCARD DataDefinitionType GetType() const override;
|
|
};
|