Example #1
0
        /*
         *        5   0
         *       4 this 1
         *        3   2
         */

        public Flower(int x, int y)
        {
            flowers     = new Flower[6];
            cord        = new BoardCordinate();
            cord.BoardX = x;
            cord.BoardY = y;
        }
Example #2
0
        public CapsuleView(Context context, int radius, int x, int y) : base(context)
        {
            this.Radius       = radius;
            this.capsuleState = DotState.Empty;

            this.cord   = new BoardCordinate();
            cord.BoardX = x;
            cord.BoardY = y;
        }