Quick question. (I was not able to find documentation about this anywhere)
When you do this:
Texture2D t1;
t1 = content.Load<Texture2D>("some texture");
Texture2D t2;
t2 = t1;
Does it creates a reference or actually copies the texture?
I would like to know it so I can take it into account when implementing related stuff.