Sprite.h Sprite.hCPP1/* Copyright Statement:2 *3 * (C) 2021-2024 Cubios Inc. All rights reserved.4 */5#pragma once6#include "SceneObject.h"7#include <string>8 9namespace Cubios 10{11namespace Gfx12{13class Sprite: public Cubios::SceneObject14{15 public:16 17 Sprite(std::string name, const Cubios::Math::Transform& t);18 Sprite(std::string name, float x, float y);19 Sprite(std::string name);20 Sprite(const Sprite& sprite);21 22 virtual ~Sprite();23 void Render() override;24 25 private: 26 u32_t resourceId;27};28}29}30 Wrapped for easier reading. Turn wrap off to inspect exact line lengths.WrappedExplain with AIAI