diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-11-10 00:01:05 +0300 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-11-10 00:01:05 +0300 |
| commit | 6ec61f84c354ed5c78a9782e678b425068fee846 (patch) | |
| tree | c664b0aa2a1e791857e98b37b0065826befc3e24 /task05/Guschin/MyForm.cpp | |
| parent | 0408d33694635cdc28db23c9c6388bd916626bde (diff) | |
Подготовил шаблон к 5 заданию
Diffstat (limited to 'task05/Guschin/MyForm.cpp')
| -rw-r--r-- | task05/Guschin/MyForm.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/task05/Guschin/MyForm.cpp b/task05/Guschin/MyForm.cpp new file mode 100644 index 0000000..bb5fa5d --- /dev/null +++ b/task05/Guschin/MyForm.cpp @@ -0,0 +1,17 @@ +#include "Matrix.h" +#include <math.h> +#include "Transform.h" +#include "Clip.h" +#include <vector> +#include "MyForm.h" + +using namespace System; +using namespace System::Windows::Forms; + +[STAThreadAttribute] +void Main(array<String^> ^ args) { + Application::EnableVisualStyles(); + Application::SetCompatibleTextRenderingDefault(false); + Guschin::MyForm form; + Application::Run(% form); +}
\ No newline at end of file |