SDLU/SDLU_Example/main.cpp

11 lines
200 B
C++
Raw Normal View History

2020-05-16 10:34:20 +00:00
#include "header.hpp"
2020-05-16 11:17:31 +00:00
#include <iostream>
2020-05-16 10:34:20 +00:00
int main(int argc, char** argv)
{
2020-05-16 11:17:31 +00:00
sdlu::Vector2f vec(.4f, -2.3f);
std::cout << "Vector2f: " << vec.x << ", " << vec.y << std::endl;
2020-05-16 10:34:20 +00:00
return 0;
}