mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-13 03:31:22 +00:00
11 lines
No EOL
209 B
C#
11 lines
No EOL
209 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Mono.Cecil.Cil;
|
|
|
|
namespace Indy.IL2CPU.IL {
|
|
[OpCode(Code.Ret)]
|
|
public abstract class Return: Op {
|
|
}
|
|
} |