summaryrefslogtreecommitdiff
path: root/src/const
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-12-13 22:49:35 +0300
committerAndrei Karas <akaras@inbox.ru>2015-12-13 22:49:35 +0300
commit004bb0759fa125f53a4595834f65ad30e7921461 (patch)
treeb4dc69af59d03a2eb07348c8ce5ef3de3687b116 /src/const
parentac3ccda23ac4b5c69e15147b8082d90df2ac23de (diff)
downloadplus-004bb0759fa125f53a4595834f65ad30e7921461.tar.gz
plus-004bb0759fa125f53a4595834f65ad30e7921461.tar.bz2
plus-004bb0759fa125f53a4595834f65ad30e7921461.tar.xz
plus-004bb0759fa125f53a4595834f65ad30e7921461.zip
Move timer constants into separate file.
Diffstat (limited to 'src/const')
-rw-r--r--src/const/utils/timer.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/const/utils/timer.h b/src/const/utils/timer.h
new file mode 100644
index 000000000..221531dc4
--- /dev/null
+++ b/src/const/utils/timer.h
@@ -0,0 +1,31 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2015 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef CONST_UTILS_TIMER_H
+#define CONST_UTILS_TIMER_H
+
+#include "localconsts.h"
+
+/**
+ * Set the milliseconds value of a tick time.
+ */
+static const int MILLISECONDS_IN_A_TICK = 10;
+
+#endif // CONST_UTILS_TIMER_H