public void ComeToMe(int ID, string Lay, int x, int y)
 {
     try {
         var m = KthuraBubble.GetMap(ID);
         BubBlockMap.ComeToMe(FlowManager.GetHardFlow, m, Lay, x, y);
     } catch (Exception Crap) {
         SBubble.MyError("Kthura Blockmap Debug Error", Crap.Message, $"{ID}/{Lay}/({x},{y})");
     }
 }
Пример #2
0
        static public void Init(string astatename)
        {
            var Kth = new KthuraBubble();
            var S   = SBubble.State(astatename).state;

            S["BKTHURA"]  = Kth;
            Kth.statename = astatename;
            var bt = QuickStream.OpenEmbedded("KthuraBubble.nil");
            var l  = bt.ReadString((int)bt.Size);

            bt.Close();
            SBubble.DoNIL(astatename, l, "Kthura API Link Script");
        }