#ifndef EMBER_HPP_INCLUDED
#define EMBER_HPP_INCLUDED

using namespace std;

struct ember{

    string name;

    ember(string s){
        name = s;
    }

};

#endif // EMBER_HPP_INCLUDED
