WOWCube Docs logo
WOWCube Docs
Mission Control
Section Shortcuts
APIExamplesSourceWOWConnectChangelog
Filters
SDK and language defaults persist in cookies.
SDK version
Navigation Tree
Collapsed by default, focused on the active path.
Made byMcKay Seamons
GitHub
  1. Home
  2. Docs
  3. Source
  4. Object.h
Mission NodeSDK 6.3C++object.h

Object.h

SDK Source File: Object.h

Source / SDK 6.3 / C++ / Core

Object.h

Object.h
CPP
1/* Copyright Statement:
2 *
3 * (C) 2021-2025 Cubios Inc. All rights reserved.
4 */
5
6#ifndef WASMLIBS_CPP_OBJECT_H_
7#define WASMLIBS_CPP_OBJECT_H_
8
9namespace Cubios
10{
11class Object
12{
13public:
14 Object(){}
15 virtual ~Object(){}
16
17 inline void SetId(int16_t id) {this->Id = id;}
18
19public:
20 int16_t Id;
21};
22
23}
24#endif /* WASMLIBS_CPP_SCENEOBJECT_H_ */
25
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.
Context Rail

Related nodes

AppManager.cpp
Source / SDK 6.3 / C++ / Core
AppManager.h
Source / SDK 6.3 / C++ / Core
Gfx.h
Source / SDK 6.3 / C++ / Core
native access.h
Source / SDK 6.3 / C++ / Core
Previous Node
NetworkMessage.h
Source / SDK 6.3 / C++ / Core
Next Node
SaveMessage.cpp
Source / SDK 6.3 / C++ / Core