SkinImageRect.h 436 B

123456789101112131415161718192021
  1. /***********************************************
  2. * 工作室 : 软景工作室
  3. * 作者 : 肖尚德
  4. * 用途 :
  5. *************************************************/
  6. #include "Skin.h"
  7. #pragma once
  8. //////////////////////////////////////////////////
  9. struct SkinImage
  10. {
  11. char strImageName[MAX_NAME];
  12. SkinRect rtImagePos;
  13. };
  14. struct SkinSection
  15. {
  16. char strImageName[MAX_NAME];
  17. SkinRect rtImagePos;
  18. SkinMargins marginImage;
  19. int stretchImage;
  20. };