Program.cs 238 B

1234567891011121314151617
  1. using System;
  2. using AtomicSharp;
  3. namespace AtomicSharpTest
  4. {
  5. class MainClass
  6. {
  7. public static void Main (string[] args)
  8. {
  9. AtomicSharp.AtomicSharp.Initialize ();
  10. while (AtomicSharp.AtomicSharp.RunFrame ()) {
  11. }
  12. }
  13. }
  14. }