Fusion.Build.Builder.LocalFile.LocalFile C# (CSharp) Method

LocalFile() public method

public LocalFile ( string baseDir, string fullPath ) : System
baseDir string
fullPath string
return System
			public LocalFile ( string baseDir, string fullPath )
			{
				this.Handled	=	false;
				this.BaseDir	=	baseDir;
				this.FullPath	=	fullPath;
				this.KeyPath	=	ContentUtils.BackslashesToSlashes( ContentUtils.MakeRelativePath(baseDir+"/", fullPath) );
			}
		}
Builder.LocalFile