⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 physicsinfo.h

📁 c++ 游戏编程中的内存管理源码示例
💻 H
字号:


#ifndef PHYSICSINFO_H_
#define PHYSICSINFO_H_


#include "MemoryMgr.h"


// This is a class that is not part of a hierarchy


struct Vector3d
{
    float x, y, z;
};


class PhysicsInfo
{
public:
    Vector3d position;
    Vector3d velocity;
    Vector3d acceleration;
    bool bFlying;
    // More stuff here

private:
    DECLARE_HEAP;
};



#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -