Updated Implementation (markdown)

Chuck Walbourn 2016-11-29 17:49:51 -08:00
Родитель 1531d74c83
Коммит 06f9727ac4
1 изменённых файлов: 8 добавлений и 0 удалений

@ -18,6 +18,14 @@ DirectXTK's implementation makes extensive use of the [pImpl idiom](http://en.wi
class SpriteBatch
{
public:
SpriteBatch();
SpriteBatch(SpriteBatch&& moveFrom);
SpriteBatch& operator= (SpriteBatch&& moveFrom);
SpriteBatch(SpriteBatchconst&) = delete;
SpriteBatch& operator=(SpriteBatchconst&) = delete;
virtual ~SpriteBatch();
...
private: