https://github.com/thebeachmaster/fsm-c-sharp
A simple FSM written in C#
https://github.com/thebeachmaster/fsm-c-sharp
c-sharp dotnet fsm
Last synced: about 1 month ago
JSON representation
A simple FSM written in C#
- Host: GitHub
- URL: https://github.com/thebeachmaster/fsm-c-sharp
- Owner: TheBeachMaster
- License: gpl-3.0
- Created: 2018-03-13T21:27:42.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-14T12:33:20.000Z (over 8 years ago)
- Last Synced: 2026-02-20T11:09:31.877Z (4 months ago)
- Topics: c-sharp, dotnet, fsm
- Language: C#
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fsm-c-sharp
A simple FSM written in C#
> Creating Project
```bash
$ dotnet new console -o gen-fsm
```
> Details
+ States
- Paused
- Exited
- Active
- Inactive
+ State Trasitions
- Begin process
- End process
- Pause process
- Exit process
- Resume process
> Run
```bash
$ cd ./gen-fsm && dotnet run
```
Initially Contributed by [Juliet](https://stackoverflow.com/users/40516/juliet)