Multi-platform .NET bindings to the Ultralight project.
1using System;
2using System.IO;
3using Silk.NET.Core.Loader;
4
5internal abstract class LocalLibNameContainer : SearchPathContainer {
6
7 protected static readonly string AssemblyPath
8 = new Uri(typeof(CustomGlEsLibNameContainer).Assembly.CodeBase!).LocalPath;
9
10 protected static readonly string AssemblyDirectory
11 = Path.GetDirectoryName(AssemblyPath)!;
12
13}