///////////////////////////////////////////////////////////////////////////////
//  SSize.cpp

#include "SSize.h"

SSize::SSize() :
	w(0.0f),
	h(0.0f)
{
}

SSize::SSize(float w_, float h_) :
	w(w_),
	h(h_)
{
}

SSize::~SSize()
{
}

SSize SSize::operator+(const SSize& Obj) const
{
	return SSize(w + Obj.w, h + Obj.h);
}

SSize SSize::operator-(const SSize& Obj) const
{
	return SSize(w - Obj.w, h - Obj.h);
}



