From e63155370c817a1d9c16ef798b0a55e6fe328941 Mon Sep 17 00:00:00 2001 From: Adrian Ulbrich Date: Wed, 6 Nov 2019 21:07:49 +0100 Subject: 3d support --- Unicity.Renderer/ShaderCompilationFailedException.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Unicity.Renderer/ShaderCompilationFailedException.cs (limited to 'Unicity.Renderer/ShaderCompilationFailedException.cs') diff --git a/Unicity.Renderer/ShaderCompilationFailedException.cs b/Unicity.Renderer/ShaderCompilationFailedException.cs new file mode 100644 index 0000000..ab40cea --- /dev/null +++ b/Unicity.Renderer/ShaderCompilationFailedException.cs @@ -0,0 +1,9 @@ +using System; + +namespace Unicity.Renderer +{ + class ShaderCompilationFailedException : Exception + { + public ShaderCompilationFailedException(string message) : base(message) { } + } +} -- cgit v1.2.3