C++ PaintKit parses doesn't put "," at the end of lines
CredixYt opened this issue · 1 comments
CredixYt commented
Fix by changing CppEnumHelper.cs:57
from sb.AppendLine("\t" + BetterNaming(translation.Translation) + " = " + paintKit.Index.ToString());
to sb.AppendLine("\t" + BetterNaming(translation.Translation) + " = " + paintKit.Index.ToString() + ",");
@michel-pi
EDIT: Fixed Markdown
michel-pi commented
thanks