chore: removed unneeded includes
This commit is contained in:
parent
39f89d5127
commit
be64a55588
|
@ -1,16 +1,9 @@
|
||||||
#include "Player.h"
|
#include "Player.h"
|
||||||
#include "Prop.h"
|
|
||||||
#include "Enemy.h"
|
#include "Enemy.h"
|
||||||
#include "program.h"
|
#include "program.h"
|
||||||
#include "shape.h"
|
|
||||||
|
|
||||||
static
|
static
|
||||||
void play() {
|
void play() {
|
||||||
SpawnProp(MakeVector(2.f, 0.f),
|
|
||||||
sprite_from_spritesheet(spritesheet_load("assets/bag.png", IVectorFrom(512)), 0),
|
|
||||||
shape_new_square(MakeVector(0.2f, 0.075f)),
|
|
||||||
MakeVector(0.5f, .93f)
|
|
||||||
);
|
|
||||||
SpawnPlayer(ZeroVector);
|
SpawnPlayer(ZeroVector);
|
||||||
SpawnEnemy(MakeVector(1.f, 0.0f), EnemyIdle());
|
SpawnEnemy(MakeVector(1.f, 0.0f), EnemyIdle());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue