mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 17:16:57 +02:00
11 lines
114 B
C
11 lines
114 B
C
#pragma once
|
|
|
|
enum class TaskState : u8
|
|
{
|
|
NotStarted,
|
|
Running,
|
|
Completed,
|
|
Canceled,
|
|
Failed
|
|
};
|