Axiom.Overlays.OverlayElementManager.GetElementTable C# (CSharp) 메소드

GetElementTable() 개인적인 메소드

Quick helper method to return the lookup table for the right element type.
private GetElementTable ( bool isTemplate ) : OverlayElement>.Dictionary
isTemplate bool
리턴 OverlayElement>.Dictionary
		private Dictionary<string, OverlayElement> GetElementTable( bool isTemplate )
		{
			return isTemplate ? _elementTemplates : _elementInstances;
		}