1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-06 05:44:48 -04:00
dressupzack/scripts/autoload/game_data.gd
Tony Bark e90a500858 Cleaned up code base
- Moved character variables and News API address to global GameData class
2021-06-04 11:25:35 -04:00

17 lines
339 B
GDScript

# This project is licensed under the Artistic-2.0 license.
# See the LICENSE file in the project root for more information.
extends Node
var version = "0.0.0"
const NEWS_API = "https://static.tonybark.com/news/dressup.json"
var top = null
var bottom = null
var underwear = null
var accessory = null
enum characters {
ZACK,
ANTHONY
}