13 lines
244 B
C++
13 lines
244 B
C++
#ifndef INFORMATIONMANAGER_HPP_
|
|
#define INFORMATIONMANAGER_HPP_
|
|
|
|
class InformationManager {
|
|
public:
|
|
int SetClientIndex(int i) { return clientIndex = i; }
|
|
int GetClientIndex() { return clientIndex; }
|
|
private:
|
|
int clientIndex = -1;
|
|
};
|
|
|
|
#endif
|