mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 14:51:21 +00:00
13 lines
261 B
C#
Executable file
13 lines
261 B
C#
Executable file
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace FSO.Files.Utils
|
|
{
|
|
/// <summary>
|
|
/// A texture used in the game world.
|
|
/// </summary>
|
|
public class WorldTexture
|
|
{
|
|
public Texture2D Pixel;
|
|
public Texture2D ZBuffer;
|
|
}
|
|
}
|