Created example prefab.
This commit is contained in:
9
src/dawn/locale/CMakeLists.txt
Normal file
9
src/dawn/locale/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
||||
# Copyright (c) 2023 Dominic Masters
|
||||
#
|
||||
# This software is released under the MIT License.
|
||||
# https://opensource.org/licenses/MIT
|
||||
|
||||
target_sources(${DAWN_TARGET_NAME}
|
||||
PRIVATE
|
||||
LocaleManager.cpp
|
||||
)
|
8
src/dawn/locale/LocaleManager.cpp
Normal file
8
src/dawn/locale/LocaleManager.cpp
Normal file
@ -0,0 +1,8 @@
|
||||
// Copyright (c) 2023 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#include "LocaleManager.hpp"
|
||||
|
||||
using namespace Dawn;
|
15
src/dawn/locale/LocaleManager.hpp
Normal file
15
src/dawn/locale/LocaleManager.hpp
Normal file
@ -0,0 +1,15 @@
|
||||
// Copyright (c) 2023 Dominic Masters
|
||||
//
|
||||
// This software is released under the MIT License.
|
||||
// https://opensource.org/licenses/MIT
|
||||
|
||||
#pragma once
|
||||
#include "dawnlibs.hpp"
|
||||
|
||||
namespace Dawn {
|
||||
class LocaleManager final {
|
||||
private:
|
||||
|
||||
public:
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user