MapVMTemplate.txt 301 B

123456789101112131415
  1. using XGame.Framework.Map;
  2. using XGame.Framework.ObjectCollection;
  3. using UnityEngine;
  4. namespace <#ProductName>.Map
  5. {
  6. public class <#KeyName>VM : IMapViewModel
  7. {
  8. <#PropertyDefineArea>
  9. public <#KeyName>VM(IObjectCollector collector)
  10. {
  11. <#PropertyAssignArea>
  12. }
  13. }
  14. }