C
C#3mo ago
nevimcobuh

✅ unknown error

Can someone explain this error? I couldn't found out solution to this.
No description
3 Replies
OkOk
OkOk3mo ago
Change the word "protected" to have the same accessibility-word as the class "Positions" have
Jimmacle
Jimmacle3mo ago
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 public
nevimcobuh
nevimcobuh3mo ago
Thanks, it worked 👍