Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ryojerryyu/games101-rust-framework

Rust 语言版 GAMES101 作业框架。 GAMES101 homework framework written in rust.
https://github.com/ryojerryyu/games101-rust-framework

Last synced: about 2 months ago
JSON representation

Rust 语言版 GAMES101 作业框架。 GAMES101 homework framework written in rust.

Awesome Lists containing this project

README

        

⚠️ incomplete ⚠️
⚠️ 未完成 ⚠️

# Rust 语言版 GAMES101 作业框架

这是 [GAMES101](https://sites.cs.ucsb.edu/~lingqi/teaching/games101.html)的 Rust 语言作业框架。用了这个框架,你可以用 Rust 语言写 GAMES101 的作业。

注意:这个框架是**非官方**的。如果你打算用这个框架来写作业,你可能会拿不到学分。

# The Rust Framework for GAMES101 Homework

A Framework for Homework of [GAMES101](https://sites.cs.ucsb.edu/~lingqi/teaching/games101.html), written in Rust. Which means that you could write your GAMES101 homework in Rust.

**Unofficial**, of course. And you may not get the score by submitting your homework using this framework.

## 分支说明

- `master`: 作业框架,其中代码对应着各次作业最初的版本。你需要往里面填写代码。

## 目录说明

根目录为一个 rust 的 Workspace ,其下每个文件夹对应一次作业项目。
运行方式: cd 到各个目录下运行 `cargo run` 命令,或在根目录下运行 `cargo run --bin ` 命令。
你的作业内容一般需要写在 `src` 文件夹下的 `lib.rs` 中,然后你可以在 `test` 文件夹下编写一些单元测试。

## 环境搭建

unimplemented