OperandType.cs 141 B

12345678910
  1. namespace Spv.Generator
  2. {
  3. public enum OperandType
  4. {
  5. Invalid,
  6. Number,
  7. String,
  8. Instruction,
  9. }
  10. }