rearrange some sources

This commit is contained in:
a dinosaur 2024-09-02 19:13:29 +10:00
parent fc50f0b350
commit d35de84221
4 changed files with 10 additions and 10 deletions

View File

@ -7,8 +7,10 @@ add_executable(Voxelotl MACOSX_BUNDLE
shadertypes.h shadertypes.h
shader.metal shader.metal
# Common library # Common utility library
Common/ConcurrentDictionary.swift Common/ConcurrentDictionary.swift
Common/Color.swift
Common/FPSCalculator.swift
# Maths library # Maths library
Math/FloatExtensions.swift Math/FloatExtensions.swift
@ -34,7 +36,7 @@ add_executable(Voxelotl MACOSX_BUNDLE
Random/SplitMix64.swift Random/SplitMix64.swift
# Resource classes # Resource classes
NSImageLoader.swift Resource/NSImageLoader.swift
# Renderer classes # Renderer classes
Renderer/Material.swift Renderer/Material.swift
@ -47,23 +49,21 @@ add_executable(Voxelotl MACOSX_BUNDLE
Input/GameController.swift Input/GameController.swift
Input/Mouse.swift Input/Mouse.swift
# Core utility classes
CubeMeshBuilder.swift
Color.swift
Camera.swift
FPSCalculator.swift
GameDelegate.swift
Application.swift
# Game logic classes # Game logic classes
Chunk.swift Chunk.swift
WorldGenerator.swift WorldGenerator.swift
CubeMeshBuilder.swift
ChunkMeshBuilder.swift ChunkMeshBuilder.swift
World.swift World.swift
Raycast.swift Raycast.swift
Camera.swift
Player.swift Player.swift
Game.swift Game.swift
# Core application classes
GameDelegate.swift
Application.swift
main.swift) main.swift)
set_source_files_properties( set_source_files_properties(