소스 검색

going public

master
Noelle 4 년 전
부모
커밋
6669157109
3개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 1
    1
      src/animator.rs
  2. 1
    0
      src/main.rs
  3. 1
    1
      src/physics.rs

+ 1
- 1
src/animator.rs 파일 보기

@@ -2,7 +2,7 @@ use specs::prelude::*;

use crate::components::*;

struct Animator;
pub struct Animator;

impl<'a> System<'a> for Animator {
type SystemData = (

+ 1
- 0
src/main.rs 파일 보기

@@ -1,6 +1,7 @@
mod components;
mod physics;
mod animator;
mod keyboard;

use sdl2::pixels::Color;
use sdl2::event::Event;

+ 1
- 1
src/physics.rs 파일 보기

@@ -2,7 +2,7 @@ use specs::prelude::*;

use crate::components::*;

struct Physics;
pub struct Physics;

impl<'a> System<'a> for Physics {
type SystemData = (WriteStorage<'a, Position>, ReadStorage<'a, Velocity>);

Loading…
취소
저장