GCC Code Coverage Report


Directory: ./
File: sources/Component/component_clickable.c
Date: 2023-09-29 04:53:15
Exec Total Coverage
Lines: 0 4 0.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /*
2 * Filename: component_clickable.c
3 * Path: sources/Component
4 * Created Date: Friday, September 29th 2023, 12:52:35 am
5 * Author: osvegn
6 *
7 * Copyright (c) 2023 our_rpg
8 */
9
10 #include "components.h"
11
12 int component_clickable_constructor(component_t *component, void *data)
13 {
14 component->type = C_CLICKABLE;
15 component->data = 0;
16 return 0;
17 }
18