TeaseAI_CE.Scripting.BlockBase.BlockBase C# (CSharp) 메소드

BlockBase() 공개 메소드

public BlockBase ( string key, Line lines, string tags, GroupInfo group, Logger log ) : System
key string
lines Line
tags string
group GroupInfo
log Logger
리턴 System
		public BlockBase(string key, Line[] lines, string[] tags, GroupInfo group, Logger log) : base(-1, key, lines)
		{
			Group = group;
			Log = log;
			Valid = Validation.NeverRan;

			if (tags != null && tags.Length > 0)
				this.tags = new HashSet<string>(tags);
		}