-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMain.cpp
More file actions
28 lines (20 loc) · 862 Bytes
/
Main.cpp
File metadata and controls
28 lines (20 loc) · 862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*##########################################################################################
PAX SAPIENTICA Library 💀🌿🌏
[Planning] 2023-2024 As Project
[Production] 2023-2024 As Project
[Contact Us] wanotaitei@gmail.com https://github.com/AsPJT/PAX_SAPIENTICA
[License] Distributed under the CC0 1.0. https://creativecommons.org/publicdomain/zero/1.0/
##########################################################################################*/
#define _CRT_SECURE_NO_WARNINGS
#define PAXS_USING_SFML
// STB implementation must be defined in exactly one cpp file per executable
#define STB_IMAGE_WRITE_IMPLEMENTATION
#include <stb/stb_image_write.h>
#include <SFML/Graphics.hpp>
#include <omp.h>
#include <PAX_MAHOROBA/Core/Main.hpp>
// その他の処理 (Windows)
int main() {
paxs::startMain();
return 0;
}