| 12345678910111213141516171819202122 |
- using System;
- namespace OpenVIII.Fields.Scripts.Instructions
- {
- internal sealed class MENUNORMAL : JsmInstruction
- {
- public MENUNORMAL()
- {
- }
- public MENUNORMAL(Int32 parameter, IStack<IJsmExpression> stack)
- : this()
- {
- }
- public override String ToString()
- {
- return $"{nameof(MENUNORMAL)}()";
- }
- }
- }
|