16 lines
217 B
C++
16 lines
217 B
C++
#pragma once
|
|
#include "extern.h"
|
|
|
|
|
|
class application;
|
|
|
|
class CORE_API core_handle {
|
|
public:
|
|
core_handle();
|
|
|
|
void init_core(const char* runtime_dir);
|
|
void release_core();
|
|
private:
|
|
application* app_;
|
|
};
|