blob: 9760daafe22c49bd3ef39c1c8fae429fdbe32a2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "Components.h"
#include <iostream>
using namespace crepe;
Component::Component() : mActive(true) {}
Sprite::Sprite(std::string path) : mPath(path) {}
Rigidbody::Rigidbody(int mass, int gravityScale, int bodyType)
: mMass(mass), mGravityScale(gravityScale), mBodyType(bodyType) {}
Colider::Colider(int size) : mSize(size) {}
|