diff --git a/osu.Game/Screens/Menu/IntroScreen.cs b/osu.Game/Screens/Menu/IntroScreen.cs
index c81fef6436..1052ebdd5b 100644
--- a/osu.Game/Screens/Menu/IntroScreen.cs
+++ b/osu.Game/Screens/Menu/IntroScreen.cs
@@ -21,8 +21,15 @@ namespace osu.Game.Screens.Menu
{
public abstract class IntroScreen : StartupScreen
{
+ ///
+ /// A hash used to find the associated beatmap if already imported.
+ ///
protected abstract string BeatmapHash { get; }
+ ///
+ /// A source file to use as an import source if the intro beatmap is not yet present.
+ /// Should be within the "Tracks" namespace of game resources.
+ ///
protected abstract string BeatmapFile { get; }
private readonly BindableDouble exitingVolumeFade = new BindableDouble(1);