2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-02 23:17:26 +00:00
Files
OpenAssetTools/src/ZoneCodeGeneratorNew/Domain/Definition/Variable.h
2021-02-07 23:31:45 +01:00

19 lines
320 B
C++

#pragma once
#include <memory>
#include <string>
#include "TypeDeclaration.h"
class Variable
{
public:
std::string m_name;
bool m_has_alignment_override;
unsigned m_alignment_override;
std::unique_ptr<TypeDeclaration> m_type_declaration;
unsigned GetAlignment();
bool GetForceAlignment();
};