8 Star 6 Fork 1

ssSiXxx/人生重开模拟器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.h 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
小邓 提交于 2023-11-30 22:46 +08:00 . V1.1
#pragma once
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include<easyx.h>
#include<conio.h>
#include<stdio.h>
#include <time.h>
#include<stdlib.h>
extern int* selected_lines;
//用于声明函数,结构体
typedef struct character {
int apprance; //颜值
int health; //体质
int wealth; //家境
int intelligence; //智力
int happiness; //快乐
}character;
//用于储存每一岁的经历 使用双向链表的形式
typedef struct textBox {
struct textBox* Next;
struct textBox* last;
char myage[20];
char str[100];
}textBox;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/sssixxx/life-reboot-simulator.git
git@gitee.com:sssixxx/life-reboot-simulator.git
sssixxx
life-reboot-simulator
人生重开模拟器
master

搜索帮助