-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
feature/enhancementNew feature or requestNew feature or request
Description
[Flags]
enum Flags
{
None = 0,
UnionJack = 1,
USA = 2,
Communist = 4,
SouthKorea = 8,
}
// ...
var file = new DataFile("example");
var communistBritain = Flags.UnionJack | Flags.Communist;
file.Set("flags", communistBritain);example.succ will contain the following:
flags: 5
It would be nicer if it contained something like this:
flags: UnionJack | Communist
or perhaps
flags: UnionJack, Communist
or maybe even
flags: UnionJack and Communist
Or maybe SUCC should support all three syntaxes, and the one that's used is a FileStyle setting.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
feature/enhancementNew feature or requestNew feature or request