Catos Engine (Source)
0.0.1
Lightweight Game engine
Loading...
Searching...
No Matches
node.h
Go to the documentation of this file.
1
//
2
// Created by allos on 9/29/2024.
3
//
4
5
#ifndef CATOS_NODE_H
6
#define CATOS_NODE_H
7
8
9
namespace
catos
{
10
11
class
Node
{
12
public
:
13
Node
();
14
Node
(
Node
& node);
15
Node
(
Node
&& node);
16
17
18
private
:
19
20
};
21
}
22
23
24
#endif
//CATOS_NODE_H
catos
Definition
application.h:13
catos::Node
Definition
node.h:11
catos::Node::Node
Node()
catos::Node::Node
Node(Node &&node)
catos::Node::Node
Node(Node &node)