The-Powder-Toy/src/client/User.h

30 lines
327 B
C
Raw Normal View History

2012-01-25 11:21:55 -06:00
/*
* User.h
*
* Created on: Jan 25, 2012
* Author: Simon
*/
#ifndef USER_H_
#define USER_H_
#include <string>
class User
{
public:
int ID;
std::string Username;
std::string SessionID;
std::string SessionKey;
User(int id, std::string username):
ID(id),
Username(username)
{
}
};
#endif /* USER_H_ */