LAview.Desktop/src/Resources.vala

15 lines
332 B
Vala
Raw Normal View History

2015-12-27 19:06:08 +03:00
namespace LAview.Desktop {
class Resources {
public static Resource resource;
public static void init (string[] args) throws Error {
var resource_file = AppDirs.resource_dir+"/laview-desktop.gresource";
resource = Resource.load (resource_file);
resource._register();
}
2016-02-08 02:57:57 +03:00
public static void terminate () {
}
2015-12-27 19:06:08 +03:00
}
}