mirror of
https://github.com/zoriya/ComSquare.git
synced 2026-05-27 16:21:53 +00:00
Merge branch 'PPU' of github.com:AnonymusRaccoon/ComSquare into PPU
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
#include "../Memory/MemoryBus.hpp"
|
||||
#include "../../ui/ui_busView.h"
|
||||
#include "ClosableWindow.hpp"
|
||||
#include <optional>
|
||||
|
||||
namespace ComSquare::Debugger
|
||||
{
|
||||
|
||||
@@ -17,13 +17,13 @@ namespace ComSquare
|
||||
T x;
|
||||
T y;
|
||||
|
||||
Vector2<T>()
|
||||
Vector2()
|
||||
: x(0), y(0) {}
|
||||
|
||||
Vector2<T>(T _x, T _y)
|
||||
Vector2(T _x, T _y)
|
||||
: x(_x), y(_y) {}
|
||||
|
||||
Vector2<T>(sf::Vector2<T> v)
|
||||
Vector2(sf::Vector2<T> v)
|
||||
: x(v.x), y(v.y) {}
|
||||
|
||||
template<typename T2>
|
||||
|
||||
Reference in New Issue
Block a user