-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [クラスラッパー]停車場における乗降の進捗を取得できるように
- Loading branch information
1 parent
15c602c
commit df0c28c
Showing
5 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
Libs/BveTypes/ClassWrappers/Public/Passenger.StationProcess.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace BveTypes.ClassWrappers | ||
{ | ||
public partial class Passenger | ||
{ | ||
/// <summary> | ||
/// 停車場における自列車の乗客の乗降の進捗を指定します。 | ||
/// </summary> | ||
public enum StationProcess | ||
{ | ||
/// <summary> | ||
/// 乗降が開始されていないことを指定します。 | ||
/// </summary> | ||
Ready, | ||
|
||
/// <summary> | ||
/// 降車中であることを指定します。 | ||
/// </summary> | ||
Alighting, | ||
|
||
/// <summary> | ||
/// 乗車中であることを指定します。 | ||
/// </summary> | ||
Boarding, | ||
|
||
/// <summary> | ||
/// 乗降が完了したことを指定します。 | ||
/// </summary> | ||
Completed, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters