Exemple #1
0
        // ===========================================================
        // Constructors
        // ===========================================================

        public Shape(/* final */ float pX, /* final */ float pY)
        {
            this.mBaseX = pX;
            this.mBaseY = pY;

            this.mX = pX;
            this.mY = pY;

            mShapeModifiers = new andengine.util.modifier.ModifierList <IShape>(this);
        }
Exemple #2
0
        // ===========================================================
        // Constructors
        // ===========================================================

        public Shape(/* final */ float pX, /* final */ float pY)
        {
            this.mBaseX = pX;
            this.mBaseY = pY;

            this.mX = pX;
            this.mY = pY;

            mShapeModifiers = new andengine.util.modifier.ModifierList<IShape>(this);
        }