LAview.Desktop/src/AppCore.vala

17 lines
313 B
Vala
Raw Permalink Normal View History

2015-12-27 19:06:08 +03:00
namespace LAview.Desktop {
class AppCore {
public static LAview.Core.Core core;
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();
settings = new AppSettings();
2015-12-27 19:06:08 +03:00
}
2016-02-08 02:57:57 +03:00
public static void terminate () {
core = null;
}
2015-12-27 19:06:08 +03:00
}
}