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
9namespace catos {
10
11 class Node {
12 public:
14 Node(Node& node);
15 Node(Node&& node);
16
17
18 private:
19
20 };
21}
22
23
24#endif //CATOS_NODE_H
Definition application.h:13
Definition node.h:11
Node(Node &&node)
Node(Node &node)