blob: 603c98dc6188c198434f9d4e18cd18bcd4ceaa2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// vim:ft=doxygen
namespace crepe {
/**
\defgroup feature_gameobject GameObjects
\ingroup feature
\brief GameObject to create a Scene
GameObjects are the fundamental building blocks of a Scene. They represent entities
in the game world and can have various components attached to them to define their
behavior and properties. GameObjects can be created, and modified within the
Scene, allowing for a flexible and dynamic game environment.
\see Component
\see Scene
*/
}
|