* 1/3 Add .clang-format file and travis compilation check * 2/3 Run clang-format * 3/3 Fix compilation problems due to include reordering * 3bis/3 AfterControlStatement: false
13 lines
183 B
C
13 lines
183 B
C
#ifndef TRANSLATION_H
|
|
#define TRANSLATION_H
|
|
|
|
enum GrammaticalCase
|
|
{
|
|
CaseNominative,
|
|
CaseLookAtZone,
|
|
CaseTopCardsOfZone,
|
|
CaseRevealZone,
|
|
CaseShuffleZone
|
|
};
|
|
|
|
#endif
|