예제 #1
0
 public EventMove(IAudioEngine s, EventMove.MOVE m, int l, MapCharacterBase c)
     : base(s)
 {
     this.move      = m;
     this.length    = this.move == EventMove.MOVE.jump ? 60 : l;
     this.character = c;
 }
예제 #2
0
 public void EventSet(MapCharacterBase c)
 {
     this.character = c;
 }
예제 #3
0
 public EventMove Clone(MapCharacterBase c)
 {
     return(new EventMove(this.sound, this.move, this.length, c));
 }