mirror of
https://github.com/AxioDL/LibCommon.git
synced 2026-03-30 11:47:23 -07:00
dbffde1650
Now that we've migrated off the non-constexpr constants, we can eliminate the remaining ones.
14 lines
238 B
C++
14 lines
238 B
C++
#include "CVector2f.h"
|
|
|
|
CVector2f::CVector2f(IInputStream& rInput)
|
|
{
|
|
X = rInput.ReadFloat();
|
|
Y = rInput.ReadFloat();
|
|
}
|
|
|
|
void CVector2f::Write(IOutputStream& rOutput) const
|
|
{
|
|
rOutput.WriteFloat(X);
|
|
rOutput.WriteFloat(Y);
|
|
}
|