9 lines
155 B
C++
Executable file
9 lines
155 B
C++
Executable file
#include "SpriteRect.h"
|
|
|
|
FSpriteRect::FSpriteRect() {
|
|
this->Left = 0.00f;
|
|
this->Top = 0.00f;
|
|
this->Right = 0.00f;
|
|
this->Bottom = 0.00f;
|
|
}
|
|
|