Search:

Type: Posts; User: estoyperdida

Search: Search took 0.01 seconds.

  1. Thread: Tetris

    by estoyperdida
    Replies
    8
    Views
    3,361

    thank u for such a great code dwks^^ you are...

    thank u for such a great code dwks^^ you are fabulous!

    My last (LAST) dude:


    void CheckLines()
    {
    int count_lines=0;
    int i,j,h,count_block;
    for(j = 0; j < 16; j++) {
  2. Thread: Tetris

    by estoyperdida
    Replies
    8
    Views
    3,361

    Thank you so much

    Thank you so much <3 , you are great!!

    I have another dude...
    I have this

    // movement of block down
    void downblock(block * l)
    {
    int i;
    for(i=0;i<4;i++)
  3. Thread: Tetris

    by estoyperdida
    Replies
    8
    Views
    3,361

    Then case right is this: return (l->x < 0 &&...

    Then case right is this:

    return (l->x < 0 && Board[l->x+1][l->y] != 'X');

    and case down i dont know :(
  4. Thread: Tetris

    by estoyperdida
    Replies
    8
    Views
    3,361

    Tetris

    Hi!!

    I have done this:

    int MovAllowed(Block * l,int where)
    {
    switch(where)
    {
    case left:
    if(l->x>0) //
Results 1 to 4 of 4