summaryrefslogtreecommitdiff
path: root/c-structs/struct.h
blob: 38a0cc7b69b4c5e06979ae014bba0ad22c083d8c (plain)
1
2
3
4
5
6
typedef struct {
    char name[50];
    int health;
    float damage;
} Character;