protected Sprite(Texture texture, Vector2 position, Vector2 size) { Texture = texture; Position = position; Size = size; }
public Sprite(string sprite, Vector2 position) { Texture = new Texture(sprite); Position = position; Size = Texture.Size; }