8 lines
128 B
C++
8 lines
128 B
C++
#pragma once
|
|
|
|
namespace collision_scene {
|
|
void load();
|
|
void draw();
|
|
void update(int up, int down, int left, int right);
|
|
}
|