├── .gitignore ├── DotNetUpdates ├── PureAttribute.cs ├── StringBuilderExtensions.cs ├── TimeSpanExtensions.cs └── Tuple.cs ├── HackClasses └── DataContractAttribute.cs ├── LICENSE ├── MonoGame.Framework ├── Audio │ └── SoundEffect.cs ├── Content │ └── ContentManager.cs ├── Game.cs ├── Graphics │ ├── Effect │ │ └── Effect.cs │ ├── GraphicsDevice.cs │ ├── SpriteBatch.cs │ ├── States │ │ ├── BlendState.cs │ │ ├── DepthStencilState.cs │ │ ├── RasterizerState.cs │ │ └── SamplerState.cs │ └── Texture2D.cs ├── GraphicsDeviceManager.cs ├── Media │ ├── MediaPlayer.cs │ └── Song.cs └── UnityGameWindow.cs ├── README.md └── XnaUnitySpriteBatch.csproj /.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | *.DotSettings 3 | *.user 4 | bin 5 | -------------------------------------------------------------------------------- /DotNetUpdates/PureAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/DotNetUpdates/PureAttribute.cs -------------------------------------------------------------------------------- /DotNetUpdates/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/DotNetUpdates/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /DotNetUpdates/TimeSpanExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/DotNetUpdates/TimeSpanExtensions.cs -------------------------------------------------------------------------------- /DotNetUpdates/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/DotNetUpdates/Tuple.cs -------------------------------------------------------------------------------- /HackClasses/DataContractAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/HackClasses/DataContractAttribute.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/LICENSE -------------------------------------------------------------------------------- /MonoGame.Framework/Audio/SoundEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Audio/SoundEffect.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Content/ContentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Content/ContentManager.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Game.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/Effect/Effect.cs: -------------------------------------------------------------------------------- 1 | namespace Microsoft.Xna.Framework.Graphics 2 | { 3 | public class Effect 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/GraphicsDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Graphics/GraphicsDevice.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/SpriteBatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Graphics/SpriteBatch.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/States/BlendState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Graphics/States/BlendState.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/States/DepthStencilState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Graphics/States/DepthStencilState.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/States/RasterizerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Graphics/States/RasterizerState.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/States/SamplerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Graphics/States/SamplerState.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Graphics/Texture2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Graphics/Texture2D.cs -------------------------------------------------------------------------------- /MonoGame.Framework/GraphicsDeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/GraphicsDeviceManager.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Media/MediaPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Media/MediaPlayer.cs -------------------------------------------------------------------------------- /MonoGame.Framework/Media/Song.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/Media/Song.cs -------------------------------------------------------------------------------- /MonoGame.Framework/UnityGameWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/MonoGame.Framework/UnityGameWindow.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/README.md -------------------------------------------------------------------------------- /XnaUnitySpriteBatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danzel/XnaUnitySpriteBatch/HEAD/XnaUnitySpriteBatch.csproj --------------------------------------------------------------------------------