コード例 #1
0
ファイル: CommandCache.cs プロジェクト: harry-cpp/SharpVk
 internal CommandCache(IProcLookup host, string type, CommandCache parent)
 {
     this.host   = host;
     this.type   = type;
     this.parent = parent;
     this.cache  = parent?.cache ?? default;
 }
コード例 #2
0
ファイル: CommandCache.cs プロジェクト: harry-cpp/SharpVk
 /// <summary>
 /// Build cache of function pointers from IProcLookup host.
 /// </summary>
 public void Initialise()
 {
     this.cache = new CommandCacheStruct(this);
 }