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