Example #1
0
 // Use this for initialization
 void Start()
 {
     phoneTime   = 0;
     phoneCount  = 0;
     phoneBroken = false;
     callReader  = GetComponent <CallReader>();
 }
Example #2
0
        private void CfP_Click(object sender, RoutedEventArgs e)
        {
            string ipath = Walker.PathToCfPs(Path.Text);
            string opath = System.IO.Path.Combine(Walker.PathToHTMLs(Path.Text), "call");

            foreach (var file in Walker.EveryCfP(ipath))
            {
                var pure = Walker.PureName(file);
                CallReader.UnParse(Walker.PathToHTMLs(Path.Text), pure + ".html", CallReader.Parse(file));
                Logger.Log($"Visualised a call for {pure}");
            }
        }