RGN.cs 110 B

123456789101112
  1. using System;
  2. namespace Standard;
  3. internal enum RGN
  4. {
  5. AND = 1,
  6. OR,
  7. XOR,
  8. DIFF,
  9. COPY
  10. }