Cosmos/source/Cosmos.Common/Enums.cs
Matthijs ter Woord af46aa7959 - cleanup
- ring enforcement works now, but only based on the attributes.
2014-12-05 19:57:17 +01:00

17 lines
No EOL
278 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Cosmos.Common
{
public enum Ring
{
Core = 0,
HAL = 1,
System = 2,
User = 3,
}
}