예제 #1
0
 public Logo(Texture2D bg, string centerText, string subText, TimeSpan screenTime, Logo followUp, LogoType lType, SpriteFont sf, SpriteFont subf, bool follow)
 {
     this.bg              = bg;
     this.centerText      = centerText;
     this.subText         = subText;
     this.screenTime      = TimeSpan.Zero;
     this.totalScreenTime = screenTime;
     this.followUp        = followUp;
     this.lType           = lType;
     this.sf              = sf;
     this.subf            = subf;
     this.follow          = follow;
 }