3 Replies
Change the word "protected" to have the same accessibility-word as the class "Positions" have
your
Positions
class is probably marked as internal, which is a problem because code from another project could access Tiles
if it derives its own class from Block
so either make Block
internal or make Positions
publicThanks, it worked 👍