You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Yoan BRUGIÈRE ecdf48ca75
continuous-integration/drone/push Build is passing Details
Annulation de la fonctionnalité son + modification CI
2 years ago
Sources Annulation de la fonctionnalité son + modification CI 2 years ago
.drone.yml Modification CI 2 + correction bugs des boutons de transition 2 years ago
.gitignore Déplacemnt git ignore 2 years ago
README.md readme création des classes pour diagramme de classe + début CI 2 years ago

README.md

Ohara_MAUI

classDiagram
    class Bateau{
        -NomRomanise : string
        -PremierChap : int
        -PremierEp : int
        -Description : string
        -Caracteristique : string
    }

    class Bestiaire {
        -Origine : string
        -Description : string
        -Caracteristique : string
    }

    class Equipage {
        -NomRomanise : string
        -Region : string
        -PremierChap : int
        -PremierEp : int
        -Statut : bool
        -Description : string
    }

    class FruitDuDemon {
        -NomRomanise : string
        -Type : string
        -PremierChap : int
        -PremierEp : int 
        -Description : string
        -Forces : string
        -Faiblesses : string
    }

    class Ile {
        -NomRomanise : string
        -Region : string
        -PremierChap : int
        -PremierEp : int
        -Description : string
        Geographie : string
    }

    class Personnage {
        -Prime : double
        -Epithete : string
        -Age : int
        -Taille : double
        -Origine : string
        -Biographie : string
        -Citation : string
    }

    class ObjetOhara {
        -Nom : string
        -Image : string?
    }