コード例 #1
0
 public FollowTargetAroundPoint(EntityStatic target, Point targetPosition, Point rotationalOrigin, double zoom)
 {
     this.rotationalOrigin = rotationalOrigin;
     this.targetPosition   = targetPosition;
     this.target           = target;
     this.zoom             = zoom;
 }
コード例 #2
0
 protected Static(Sprite current, EntityStatic ownerEntity)
 {
     this.ownerEntity   = ownerEntity;
     this.currentSprite = current;
     this.compositeName = "Graphics" + this.getClass().getSimpleName();
 }
コード例 #3
0
 protected Static(EntityStatic ownerEntity)
 {
     this.ownerEntity   = ownerEntity;
     this.compositeName = "Graphics" + this.getClass().getSimpleName();
 }
コード例 #4
0
 protected Rotateable(EntityStatic ownerEntity) : base(ownerEntity)
 {
 }