{-# LANGUAGE OverloadedStrings #-}
-- | Build time configuration used during code generation.
module GI.Graphene.Config ( overrides, modules ) where

import qualified Data.Text as T
import Data.Text (Text)

-- | Overrides used when generating these bindings.
overrides :: Text
overrides :: Text
overrides = [Text] -> Text
T.unlines
 [ ]

-- | Modules in this package
modules :: [Text]
modules :: [Text]
modules =  [ Text
"GI.Graphene.Config"
 , Text
"GI.Graphene"
 , Text
"GI.Graphene.Constants"
 , Text
"GI.Graphene.Enums"
 , Text
"GI.Graphene.Structs"
 , Text
"GI.Graphene.Structs.Box"
 , Text
"GI.Graphene.Structs.Euler"
 , Text
"GI.Graphene.Structs.Frustum"
 , Text
"GI.Graphene.Structs.Matrix"
 , Text
"GI.Graphene.Structs.Plane"
 , Text
"GI.Graphene.Structs.Point"
 , Text
"GI.Graphene.Structs.Point3D"
 , Text
"GI.Graphene.Structs.Quad"
 , Text
"GI.Graphene.Structs.Quaternion"
 , Text
"GI.Graphene.Structs.Ray"
 , Text
"GI.Graphene.Structs.Rect"
 , Text
"GI.Graphene.Structs.Simd4F"
 , Text
"GI.Graphene.Structs.Simd4X4F"
 , Text
"GI.Graphene.Structs.Size"
 , Text
"GI.Graphene.Structs.Sphere"
 , Text
"GI.Graphene.Structs.Triangle"
 , Text
"GI.Graphene.Structs.Vec2"
 , Text
"GI.Graphene.Structs.Vec3"
 , Text
"GI.Graphene.Structs.Vec4"]