All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.simulationconstructionset.synchronization.SimulationSynchronizer Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
package us.ihmc.simulationconstructionset.synchronization;

public class SimulationSynchronizer
{
   private static boolean createdOne = false;

   public SimulationSynchronizer()
   {
      if (createdOne)
      {
         //         String errorMessage = "Should only ever create one SimulationSynchronizer in order for everything to stay synchronized!";
         //         System.err.println(errorMessage);

         // throw new RuntimeException(errorMessage);
      }

      createdOne = true;

   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy