mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-08 16:53:49 +08:00
17 lines
307 B
C++
17 lines
307 B
C++
// Released under the MIT License. See LICENSE for details.
|
|
|
|
#ifndef BALLISTICA_SCENE_V1_SCENE_V1_H_
|
|
#define BALLISTICA_SCENE_V1_SCENE_V1_H_
|
|
|
|
namespace ballistica {
|
|
|
|
// Overall scene subsystem.
|
|
class SceneV1 {
|
|
public:
|
|
SceneV1();
|
|
};
|
|
|
|
} // namespace ballistica
|
|
|
|
#endif // BALLISTICA_SCENE_V1_SCENE_V1_H_
|