PathAnimtime.cs 252 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using static HTEXLib.Animations.MotionPathAnimation;
  5. namespace HTEXLib.Models
  6. {
  7. public class PathAnimtime: Animtime
  8. {
  9. public List<PathPart> path { get; set; }
  10. }
  11. }