コード例 #1
0
        //TODO: Rework that shit
        public void CreateCards(Theme theme, String qhead, String ahead, String qcontent, String acontent)
        {
            CompositeDatatype test, tmpo;

            test = new CompositeDatatype();
            test.AddComponent(new Text(qcontent));
            tmpo = new CompositeDatatype();
            tmpo.AddComponent(new Text(acontent));

            currentThemeTarget.AddCard(new QACard(qhead, ahead, test, tmpo));
            Stored = false;
        }