Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicSponge committed Nov 11, 2024
1 parent 061d0e4 commit 453ae56
Show file tree
Hide file tree
Showing 45 changed files with 46 additions and 46 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
############################################################
#
# WTEngine CMake
# Silvergun CMake
#
# See LICENSE.md for copyright information.
#
Expand All @@ -15,7 +15,7 @@
########################################
# Configure build project
cmake_minimum_required(VERSION 3.11)
project(wtengine VERSION 0.7.3 DESCRIPTION "What the Engine?")
project(silvergun VERSION 0.7.3 DESCRIPTION "Silvergun Game Engine")
enable_language(CXX)

# Always build release
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# What the Engine?
# Silvergun Game Engine

__WTEngine__ is a lightweight cross-platform game engine written in C++17 using an [ECS](https://en.wikipedia.org/wiki/Entity_component_system) design.
__Silvergun__ is a lightweight cross-platform game engine written in C++17 using an [ECS](https://en.wikipedia.org/wiki/Entity_component_system) design.

### Requirements
- __Build tools__:
Expand All @@ -15,8 +15,8 @@ __WTEngine__ is a lightweight cross-platform game engine written in C++17 using

Installation is handled by [CMake](https://cmake.org/). To download and prepare the library for installation run:
```
git clone https://github.com/wtfsystems/wtengine.git
cd wtengine
git clone https://github.com/AtomicSponge/silvergun.git
cd silvergun
mkdir build
cd build
cmake ..
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand All @@ -12,9 +12,9 @@
#include <fstream>
#include <exception>

#include "wtengine/_debug/logger.hpp"
#include "wtengine/_globals/_defines.hpp"
#include "wtengine/_globals/engine_time.hpp"
#include "silvergun/_debug/logger.hpp"
#include "silvergun/_globals/_defines.hpp"
#include "silvergun/_globals/engine_time.hpp"

namespace wte {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand All @@ -13,7 +13,7 @@
#include <utility>
#include <functional>

#include "wtengine/_globals/message.hpp"
#include "silvergun/_globals/message.hpp"

namespace wte {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand All @@ -13,7 +13,7 @@

#include <allegro5/allegro.h>

#include "wtengine/_globals/_defines.hpp"
#include "silvergun/_globals/_defines.hpp"

namespace wte::handler {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand All @@ -10,7 +10,7 @@

#include <string>

#include "wtengine/_globals/handlers.hpp"
#include "silvergun/_globals/handlers.hpp"

namespace wte {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand Down
21 changes: 21 additions & 0 deletions include/silvergun/cmp/_components.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/*
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
*/

#if !defined(WTE_COMPONENTS_HPP)
#define WTE_COMPONENTS_HPP

#include "silvergun/cmp/ai.hpp"
#include "silvergun/cmp/background.hpp"
#include "silvergun/cmp/bounding_box.hpp"
#include "silvergun/cmp/dispatcher.hpp"
#include "silvergun/cmp/hitbox.hpp"
#include "silvergun/cmp/location.hpp"
#include "silvergun/cmp/motion.hpp"
#include "silvergun/cmp/overlay.hpp"
#include "silvergun/cmp/sprite.hpp"

#endif
8 changes: 4 additions & 4 deletions include/wtengine/cmp/ai.hpp → include/silvergun/cmp/ai.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* wtengine
* silvergun
* --------
* By Matthew Evans
* See LICENSE.md for copyright information.
Expand All @@ -10,10 +10,10 @@

#include <functional>

#include "wtengine/cmp/component.hpp"
#include "silvergun/cmp/component.hpp"

#include "wtengine/mgr/messages.hpp"
#include "wtengine/mgr/world.hpp"
#include "silvergun/mgr/messages.hpp"
#include "silvergun/mgr/world.hpp"

namespace wte::sys {
class logic;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 0 additions & 21 deletions include/wtengine/cmp/_components.hpp

This file was deleted.

0 comments on commit 453ae56

Please sign in to comment.