From 1e00855d67f5580c8d446a0d24621986e4dae0b5 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Fri, 6 Jan 2023 13:05:52 +0200 Subject: [PATCH] Create a constants file --- sdbclient/src/constants.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 sdbclient/src/constants.rs diff --git a/sdbclient/src/constants.rs b/sdbclient/src/constants.rs new file mode 100644 index 0000000..df47e00 --- /dev/null +++ b/sdbclient/src/constants.rs @@ -0,0 +1,11 @@ +/* + * This file is part of sdbclient + * Copyright (C) 2022 Jonni Liljamo + * + * Licensed under GPL-3.0-only. + * See LICENSE for licensing information. + */ + +use bevy::prelude::*; + +pub const TEXT_COLOR: Color = Color::rgb(0.9, 0.9, 0.9); -- 2.44.1