view Test/Example/RemoteTake/CreateRemoteTakeTest.cs @ 71:1169915705ab default tip

fix TopologyNode connect
author KaitoMaeshiro <aosskaito@cr.ie.u-ryukyu.ac.jp>
date Sun, 06 Feb 2022 16:47:41 +0900
parents 41aae40a611c
children
line wrap: on
line source

using System;
using Christie_net.annotation;
using Christie_net.codegear;

namespace Christie_net.Test.Example.RemoteTake {
public class CreateRemoteTakeTest : CodeGear {
    //[Take] public RTCommand command;
    [Take] public RTCommand command;

    public override void Run(CodeGearManager cgm) {
        Console.WriteLine(command);
        cgm.GetLocalDGM().Put("finish" , "end");
    }
}
}