thunderbrew/src/net/grunt/Grunt.hpp

16 lines
261 B
C++
Raw Normal View History

2023-01-02 13:17:18 -06:00
#ifndef NET_GRUNT_GRUNT_HPP
#define NET_GRUNT_GRUNT_HPP
namespace Grunt {
class ClientLink;
class ClientResponse;
template <class>
class Command;
2023-01-02 13:17:18 -06:00
class Pending;
class Timer;
extern Command<ClientLink> s_clientCommands[];
2023-01-02 13:17:18 -06:00
}
#endif