コード例 #1
0
 public TutorialText(Texture2D texture)
 {
     Transform = new GameComponents.Transform();
     Drawable  = new GameComponents.Sprite(texture);
 }
コード例 #2
0
 public IntroText(Texture2D texture)
 {
     Transform = new GameComponents.Transform(new Vector2(0, 0));
     Drawable  = new GameComponents.Sprite(texture);
     camera    = new Camera();
 }