ME1Explorer.Unreal.Classes.BioTlkFileSet.findDataById C# (CSharp) 메소드

findDataById() 공개 메소드

public findDataById ( int strRefID, bool withFileName = false ) : string
strRefID int
withFileName bool
리턴 string
        public string findDataById(int strRefID, bool withFileName = false)
        {
            if (talkFiles != null)
            {
                return talkFiles[selectedTLK].findDataById(strRefID, withFileName);
            }
            else
            {
                return "No Data";
            }
        }
    }