mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-08 06:17:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* RbxContent.h
|
||||
* Copyright (c) 2013 ROBLOX Corp. All Rights Reserved.
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
// Standard C/C++ Headers
|
||||
#include <sstream>
|
||||
|
||||
// Qt Headers
|
||||
#include <QObject>
|
||||
|
||||
// Required for Publish Selection to Roblox
|
||||
class RbxContent : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RbxContent(QObject *parent);
|
||||
std::stringstream data;
|
||||
|
||||
public Q_SLOTS:
|
||||
QString Upload(const QString &url);
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user