Object.h Object.hCPP1/* Copyright Statement:2 *3 * (C) 2021-2024 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.WrappedExplain with AIAI