12 lines
147 B
C
12 lines
147 B
C
|
#pragma once
|
||
|
|
||
|
#include "BaseSystem.h"
|
||
|
|
||
|
namespace lwe
|
||
|
{
|
||
|
class System : public BaseSystem
|
||
|
{
|
||
|
public:
|
||
|
static void OpenURI(const Str_8& uri);
|
||
|
};
|
||
|
}
|