Related to this, I want to serialize/save as XML a part of my level, which is a levelRow.
now my levelrow is a list of a type, where the type is an enumaration BlockType.
I don;t seem to be able to write a contentwriter for BlockType, as it;s an enum, and not a class?
public
class LevelRow : List<BlockType>
{
#region
Fields
//List<BlockType> blocks;
public int Width { get; set; }