Add Tests for ZCG cpp

This commit is contained in:
Jan
2021-02-10 18:03:50 +01:00
parent 31497d804c
commit f9ef7cc35b
102 changed files with 502 additions and 21 deletions

View File

@ -0,0 +1,13 @@
#pragma once
#include <string>
class EnumMember
{
public:
std::string m_name;
long long m_value;
EnumMember();
EnumMember(std::string name, long long value);
};