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