2015-12-27 19:06:08 +03:00
|
|
|
namespace LAview.Desktop {
|
|
|
|
|
|
|
|
class AppCore {
|
|
|
|
public static LAview.Core.Core core;
|
2016-01-27 00:52:15 +03:00
|
|
|
public static AppSettings settings;
|
2015-12-27 19:06:08 +03:00
|
|
|
|
|
|
|
public static void init (string[] args) throws Error {
|
|
|
|
core = new LAview.Core.Core();
|
2016-01-27 00:52:15 +03:00
|
|
|
settings = new AppSettings();
|
2015-12-27 19:06:08 +03:00
|
|
|
}
|
2016-01-27 00:52:15 +03:00
|
|
|
|
2016-02-08 02:57:57 +03:00
|
|
|
public static void terminate () {
|
|
|
|
core = null;
|
|
|
|
}
|
2015-12-27 19:06:08 +03:00
|
|
|
}
|
|
|
|
}
|