mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
11 lines
204 B
C++
11 lines
204 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "gs/GSHandler.h"
|
|
|
|
class CGsStateUtils
|
|
{
|
|
public:
|
|
static std::string GetInputState(CGSHandler*);
|
|
static std::string GetContextState(CGSHandler*, unsigned int);
|
|
};
|