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