unit_preview_api.vala 379 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2012-2017 Daniele Bartolini and individual contributors.
  3. * License: https://github.com/taylor001/crown/blob/master/LICENSE-GPLv2
  4. */
  5. namespace Crown
  6. {
  7. namespace UnitPreviewApi
  8. {
  9. public string set_preview_resource(string placeable_type, string name)
  10. {
  11. return "UnitPreview:set_preview_resource(\"%s\", \"%s\")".printf(placeable_type, name);
  12. }
  13. }
  14. }