BodyTetrisWrapper.Program.ShapeStatus C# (CSharp) Method

ShapeStatus() public static method

public static ShapeStatus ( int shape1, int shape2 ) : void
shape1 int
shape2 int
return void
        public static void ShapeStatus(int shape1, int shape2)
        {
            //Console.WriteLine("Got Shape Status");

            OscBundle bundle = new OscBundle();
            bundle.AddElement(new OscElement("/shape1/" + shape1));
            bundle.AddElement(new OscElement("/shape2/" + shape2));
            //send bundle
            OSCSender.Send(bundle);
        }