├── .gitignore ├── LICENSE ├── README-en.md ├── README.md ├── packager.sh └── src ├── CADe_SIMU.png └── CADe_SIMU_V3 Idioma_3.0 ├── CADe_SIMU.exe ├── MFC42D.DLL ├── MFCO42D.DLL ├── MSVCRTD.DLL ├── exemplo CLP └── libnodave.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/LICENSE -------------------------------------------------------------------------------- /README-en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/README-en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/README.md -------------------------------------------------------------------------------- /packager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/packager.sh -------------------------------------------------------------------------------- /src/CADe_SIMU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/src/CADe_SIMU.png -------------------------------------------------------------------------------- /src/CADe_SIMU_V3 Idioma_3.0/CADe_SIMU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/src/CADe_SIMU_V3 Idioma_3.0/CADe_SIMU.exe -------------------------------------------------------------------------------- /src/CADe_SIMU_V3 Idioma_3.0/MFC42D.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/src/CADe_SIMU_V3 Idioma_3.0/MFC42D.DLL -------------------------------------------------------------------------------- /src/CADe_SIMU_V3 Idioma_3.0/MFCO42D.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/src/CADe_SIMU_V3 Idioma_3.0/MFCO42D.DLL -------------------------------------------------------------------------------- /src/CADe_SIMU_V3 Idioma_3.0/MSVCRTD.DLL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/src/CADe_SIMU_V3 Idioma_3.0/MSVCRTD.DLL -------------------------------------------------------------------------------- /src/CADe_SIMU_V3 Idioma_3.0/exemplo CLP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/src/CADe_SIMU_V3 Idioma_3.0/exemplo CLP -------------------------------------------------------------------------------- /src/CADe_SIMU_V3 Idioma_3.0/libnodave.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KelvinNovais/CADe_SIMU-Linux/HEAD/src/CADe_SIMU_V3 Idioma_3.0/libnodave.dll --------------------------------------------------------------------------------