You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
-- __ _ _______ _ __
|
|
-- / / /\ | | |__ __| | | \ \
|
|
-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \
|
|
-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > >
|
|
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
|
|
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
|
|
|
|
Quantum.Models = {
|
|
NPC = {},
|
|
Player = {
|
|
Citizen = {
|
|
Male = {
|
|
"models/player/Group01/male_01.mdl",
|
|
"models/player/Group01/male_02.mdl",
|
|
"models/player/Group01/male_03.mdl",
|
|
"models/player/Group01/male_04.mdl",
|
|
"models/player/Group01/male_05.mdl",
|
|
"models/player/Group01/male_06.mdl",
|
|
"models/player/Group01/male_07.mdl",
|
|
"models/player/Group01/male_08.mdl",
|
|
"models/player/Group01/male_09.mdl"
|
|
},
|
|
|
|
Female = {
|
|
"models/player/group01/female_01.mdl",
|
|
"models/player/group01/female_02.mdl",
|
|
"models/player/group01/female_03.mdl",
|
|
"models/player/group01/female_04.mdl",
|
|
"models/player/group01/female_05.mdl",
|
|
"models/player/group01/female_06.mdl"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Quantum.Classes = {
|
|
Citizen = {
|
|
Name = "Downtown Citizen",
|
|
Models = Quantum.Models.Player.Citizen
|
|
}
|
|
} |