mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
18 lines
245 B
C++
18 lines
245 B
C++
|
#ifndef HTTP_WRITER_H
|
||
|
#define HTTP_WRITER_H
|
||
|
|
||
|
#include "core/object/reference.h"
|
||
|
|
||
|
class HTTPWriter : public Reference {
|
||
|
GDCLASS(HTTPWriter, Reference);
|
||
|
|
||
|
public:
|
||
|
HTTPWriter();
|
||
|
~HTTPWriter();
|
||
|
|
||
|
protected:
|
||
|
static void _bind_methods();
|
||
|
};
|
||
|
|
||
|
#endif
|