This file contains hidden or 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
from typing import Union | |
from enum import Enum | |
from typing import Callable | |
from abc import ABC, abstractmethod | |
class Transition: | |
def __init__(self, from_state: Union[str, Enum], to_state: Union[str, Enum], condition_func: Callable[[], bool]): | |
self.from_state = from_state | |
self.to_state = to_state |
This file contains hidden or 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
[Desktop Entry] | |
Name=Aseprite | |
Comment=Animated Sprite Editor & Pixel Art Tool | |
Exec=/opt/Aseprite/bin/aseprite | |
Icon=/opt/Aseprite/share/aseprite/data/icons/ase.ico | |
Terminal=false | |
Type=Application | |
Categories=Graphics;Art; |