54 lines
1.7 KiB
Kotlin
54 lines
1.7 KiB
Kotlin
/*
|
|
* Copyright (c) 2022 The Android Open Source Project
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.example.superheroes.model
|
|
|
|
import com.example.superheroes.R
|
|
|
|
object HeroesRepository {
|
|
val heroes = listOf(
|
|
Hero(
|
|
nameRes = R.string.hero1,
|
|
descriptionRes = R.string.description1,
|
|
imageRes = R.drawable.android_superhero1
|
|
),
|
|
Hero(
|
|
nameRes = R.string.hero2,
|
|
descriptionRes = R.string.description2,
|
|
imageRes = R.drawable.android_superhero2
|
|
),
|
|
Hero(
|
|
nameRes = R.string.hero3,
|
|
descriptionRes = R.string.description3,
|
|
imageRes = R.drawable.android_superhero3
|
|
),
|
|
Hero(
|
|
nameRes = R.string.hero4,
|
|
descriptionRes = R.string.description4,
|
|
imageRes = R.drawable.android_superhero4
|
|
),
|
|
Hero(
|
|
nameRes = R.string.hero5,
|
|
descriptionRes = R.string.description5,
|
|
imageRes = R.drawable.android_superhero5
|
|
),
|
|
Hero(
|
|
nameRes = R.string.hero6,
|
|
descriptionRes = R.string.description6,
|
|
imageRes = R.drawable.android_superhero6
|
|
)
|
|
)
|
|
}
|