diff options
Diffstat (limited to 'game/shared/world/dimension.hh')
| -rw-r--r-- | game/shared/world/dimension.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/shared/world/dimension.hh b/game/shared/world/dimension.hh index 5b06895..3a383ac 100644 --- a/game/shared/world/dimension.hh +++ b/game/shared/world/dimension.hh @@ -26,10 +26,10 @@ namespace world { class Dimension { public: - explicit Dimension(const char* name, float gravity); + explicit Dimension(std::string_view name, float gravity); virtual ~Dimension(void); - const char* get_name(void) const; + std::string_view get_name(void) const; float get_gravity(void) const; public: |
