aboutsummaryrefslogtreecommitdiff
path: root/game/player.h
blob: 2cee05fff89b014e1b2e10a58e4a06826710ee88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef PLAYER_H
#define PLAYER_H


class Player {
    public:
    Player (int r, int g, int b) : r(r), g(g), b(b) {}
    
    int r, g, b;
};

#endif