LayerAction.cs 197 B

1234567891011
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace PixiEditor.Models.Enums
  5. {
  6. public enum LayerAction
  7. {
  8. Add, Remove, Move, SetActive
  9. }
  10. }