13 lines
283 B
C#
13 lines
283 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Server_Dashboard {
|
|
|
|
/// <summary>
|
|
/// This class represents a single CPU and will be added
|
|
/// to a list to account for a multi CPU system
|
|
/// </summary>
|
|
internal class CPU {
|
|
}
|
|
} |