Each enumeration must have its own class located in src / groovy. I would also suggest using a package for them. Your example should be
SIC / groovy / my / example / GameType.groovy
package my.example
enum GameType{
Game1,
Game2,
Game3,
Game4,
Game5
}
SIC / groovy / my / example / Enum2.groovy
package my.example
enum Enum2 {
Type1,
Type2,
Type3
}