コード例 #1
0
        public IRecord CreateSubrecord(string actor, bool inline)
        {
            var newRecord  = new Subrecord(actor, inline, Update);
            var newSection = new Section(newRecord);

            Sections.Add(newSection);
            return(newRecord);
        }
コード例 #2
0
ファイル: Section.cs プロジェクト: gulbanana/cardgame
 public Section(Subrecord subrecord)
 {
     Subrecord = subrecord;
 }