Ejemplo n.º 1
0
        void OnCubeDestroyed(CubeDestroyEvent e)
        {
            if (LogCubes == false)
            {
                return;
            }
            string cubePosition = e.Position.x + "," + e.Position.y + "," + e.Position.z;

            string str = "";

            str = str + "A cube has been destroyed at [" + cubePosition + "].";

            Log("Cubes", str);
        }
Ejemplo n.º 2
0
 void OnCubeDestroyed(CubeDestroyEvent e)
 {
     Puts("Cube at " + e.Position.ToString() + " was destroyed");
 }
Ejemplo n.º 3
0
 private void OnCubeDestroyed(CubeDestroyEvent e)
 {
     HookCalled("OnCubeDestroyed");
     Puts("Cube at " + e.Position + " was destroyed");
 }
Ejemplo n.º 4
0
 private void OnCubeDestroyed(CubeDestroyEvent e)
 {
     HookCalled("OnCubeDestroyed");
     Puts("Cube at " + e.Position + " was destroyed");
 }