Hey everyone,
I have a C# conception question. I have a class that inherit from MonoBehaviour but when you get the object I don’t want that the other classes access MonoBehaviour properties.
I don’t want to expose the features of the inherited MonoBehaviour class but I want to be able to use them (Update, Start, GetComponent, etc.) inside my inherited class but not from outside.
Is it possible ?
Thanks a lot.