A game framework written with osu! in mind.
at master 16 lines 382 B view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. 2// See the LICENCE file in the repository root for full licence text. 3 4using System.ComponentModel; 5 6namespace osu.Framework.Platform 7{ 8 public enum ExecutionMode 9 { 10 [Description("Single thread")] 11 SingleThread, 12 13 [Description("Multithreaded")] 14 MultiThreaded 15 } 16}