Not sure about the class names, but don't use capital 'C's when writing 'class'
You'll get an error on loading, something like found 'C' expected '='
or expected '{'
or expected '}'
or a similar message, which ain't too helpful telling you what's actually wrong.
Only use 'C's for "Cfg" sections.
e.g
class CfgWeapons
{
class Tanks{};
class MyTank : Tanks
{
.....
};
};
etc.
Marksman