LeviLamina
Loading...
Searching...
No Matches
ChemistryIngredient.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct ChemistryIngredient {
6public:
7 // member variables
8 // NOLINTBEGIN
10 // NOLINTEND
11
12public:
13 // prevent constructor by default
14 ChemistryIngredient& operator=(ChemistryIngredient const&);
15 ChemistryIngredient(ChemistryIngredient const&);
16 ChemistryIngredient();
17};
Definition Alias.h:14