13 lines
168 B
C
13 lines
168 B
C
|
#pragma once
|
||
|
|
||
|
#include "ehs/EHS.h"
|
||
|
#include "BaseSystem.h"
|
||
|
|
||
|
namespace ehs
|
||
|
{
|
||
|
class System : public BaseSystem
|
||
|
{
|
||
|
public:
|
||
|
static void OpenURI(const Str_8& uri);
|
||
|
};
|
||
|
}
|