Remove inheritances, component implementation

This commit is contained in:
Corentin 2021-07-07 03:59:23 +09:00
commit 20835586ab
15 changed files with 375 additions and 229 deletions

View file

@ -36,7 +36,7 @@ def main():
for shader_path in (
list(src_opengl_shader_path.rglob('*.vert'))
+ list(src_opengl_shader_path.rglob('*.frag'))):
out_path = (Config.BIN_DIR / shader_path.relative_to(Config.SOURCE_DIR))
out_path = Config.BIN_DIR / shader_path.relative_to(Config.SOURCE_DIR)
if not out_path.parent.exists():
out_path.parent.mkdir(parents=True)
shutil.copy(shader_path, out_path)