예제 #1
0
 public Sprite(Dictionary<string, SimpleAnimation> animations, string def)
     : this()
 {
     this.animations = animations;
     animation = animations[def];
     curAnim = def;
 }
예제 #2
0
 public Sprite(SimpleAnimation animation)
     : this()
 {
     this.animation = animation;
 }
예제 #3
0
 public Sprite(SimpleAnimation animation) : this()
 {
     this.animation = animation;
 }
예제 #4
0
 public Sprite(Dictionary <string, SimpleAnimation> animations, string def) : this()
 {
     this.animations = animations;
     animation       = animations[def];
     curAnim         = def;
 }