Hello there!
At the moment, I’m trying to implement entity component system and getting the following error:
Error Component is not marked with EntityComponent Attribute
To begin with, I’m attempting to add CursorEntity which has following component:
[EntityComponent]
    class CursorComponent : EntityComponent
    {
        public Point Position { get; set; }
    }
Any help is appreciated, thank you.
EDIT: My bad, component class should be public