Colin McMillen 2020-02-15 20:57:10 +00:00
parent ede3d4a99c
commit 1ff5034713

@ -11,3 +11,11 @@
}
}
```
```csharp
// Make a 1x1 white texture:
Texture2D whiteTexture = new Texture2D(GraphicsDevice, 1, 1);
whiteTexture.SetData(new Color[] { Color.White });
// When done with it:
whiteTexture.Dispose();
```