implemented selection test DSL, added caret tests for move right

This commit is contained in:
Anton-4 2021-01-02 19:33:26 +01:00
parent 6e245b20c9
commit 1acbe42962
9 changed files with 244 additions and 5 deletions

View file

@ -8,6 +8,11 @@
// See this link to learn wgpu: https://sotrh.github.io/learn-wgpu/
extern crate pest;
#[cfg(test)]
#[macro_use]
extern crate pest_derive;
use crate::error::print_err;
use crate::graphics::lowlevel::buffer::create_rect_buffers;
use crate::graphics::lowlevel::ortho::{init_ortho, update_ortho_buffer, OrthoResources};