~ruther/CTU-FEE-B0B35APO-Semestral-project

ref: 09a0ff694baeea75fc65cba40e9350a89eae81d9 CTU-FEE-B0B35APO-Semestral-project/lib-pheripherals/src/direction.c -rw-r--r-- 308 bytes
09a0ff69 — František Boháček feat: add pheripherals usage to file browser 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "direction.h"

void direction_move_xy(direction_t direction, int32_t *x, int32_t *y, int16_t amount) {
  switch (direction) {
  case LEFT:
    *x -= amount;
    break;
  case RIGHT:
    *x += amount;
    break;
  case UP:
    *y -= amount;
    break;
  case DOWN:
    *y += amount;
    break;
  }
}