예제 #1
0
 public Actor2D(Vector2 position, string name, AnimationSet animation, ActorCoords ac)
 {
     coords          = ac;
     actorPosition   = position;
     actorName       = name;
     this.animations = animation;
     texture         = -1;
 }
예제 #2
0
 public Actor2D(ActorCoords pos, Color clr)
 {
     coords  = pos;
     color   = clr;
     texture = -1;
 }