mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 21:38:52 +00:00
28 lines
548 B
C#
28 lines
548 B
C#
using System;
|
|
using System.CodeDom;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Cosmos.Core;
|
|
|
|
namespace PlaygroundHAL
|
|
{
|
|
public static class HALGlobal
|
|
{
|
|
public static void Test()
|
|
{
|
|
//Heap.SendStatsToDebugger();
|
|
//Heap.SendStatsToDebugger();
|
|
new object();
|
|
new object();
|
|
new object();
|
|
new object();
|
|
new object();
|
|
|
|
|
|
//Heap.SendStatsToDebugger();
|
|
|
|
}
|
|
}
|
|
}
|