├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── art └── logos │ └── VUEngine3D.png ├── assets ├── BrightnessRepeat │ ├── Converted │ │ └── DefaultBrightnessRepeatSpec.c │ └── Default.brightness ├── ColumnTable │ ├── Converted │ │ └── DefaultColumnTableSpec.c │ └── Default.ctable ├── Font │ ├── Converted │ │ ├── DebugFontSpec.c │ │ ├── DefaultFontSpec.c │ │ └── ProfilerFontSpec.c │ ├── Debug.font │ ├── Default.font │ └── Profiler.font ├── Fonts.c ├── Stage │ └── EmptyStageSpec.c └── Waveform │ ├── Converted │ ├── GlockenWaveFormSpec.c │ ├── OrganWaveFormSpec.c │ ├── PianoWaveFormSpec.c │ ├── RolandWaveFormSpec.c │ ├── SawSquareWaveFormSpec.c │ ├── SawWaveFormSpec.c │ ├── SinePlusAlphaWaveFormSpec.c │ ├── SineWaveFormSpec.c │ ├── SquareDuty75WaveFormSpec.c │ ├── SquareWaveFormSpec.c │ ├── TriangleWaveFormSpec.c │ ├── TrumpetWaveFormSpec.c │ └── ViolinWaveFormSpec.c │ ├── Glocken.waveform │ ├── Organ.waveform │ ├── Piano.waveform │ ├── Roland.waveform │ ├── Saw.waveform │ ├── SawSquare.waveform │ ├── Sine.waveform │ ├── SinePlusAlpha.waveform │ ├── Square.waveform │ ├── SquareDuty75.waveform │ ├── Triangle.waveform │ ├── Trumpet.waveform │ └── Violin.waveform ├── config ├── CompilerConfig ├── EngineConfig ├── Events ├── Messages └── RomInfo ├── contributions ├── Template │ ├── ActorImageData.c.njk │ ├── ActorSpec.c.njk │ ├── BrightnessRepeatSpec.c.njk │ ├── ColliderLayers.h.njk │ ├── ColumnTableSpec.c.njk │ ├── Config.h.njk │ ├── FontSpec.c.njk │ ├── Fonts.c.njk │ ├── Fonts.h.njk │ ├── GameEvents.h.njk │ ├── InGameTypes.h.njk │ ├── Messages.h.njk │ ├── RumbleEffectSpec.c.njk │ ├── RumbleEffects.h.njk │ ├── SoundSpec.c.njk │ ├── config.make.njk │ ├── vb.ld.njk │ └── vb_tools.ld.njk ├── TemplateConfig │ ├── ActorImageData.templateConfig │ ├── ActorSpec.templateConfig │ ├── BrightnessRepeatSpec.templateConfig │ ├── ColliderLayers.templateConfig │ ├── ColumnTableSpec.templateConfig │ ├── Config.templateConfig │ ├── FontSpec.templateConfig │ ├── FontsC.templateConfig │ ├── FontsH.templateConfig │ ├── GameEvents.templateConfig │ ├── InGameTypes.templateConfig │ ├── Messages.templateConfig │ ├── RumbleEffectSpec.templateConfig │ ├── RumbleEffects.templateConfig │ ├── SoundSpec.templateConfig │ ├── configMake.templateConfig │ ├── vbLd.templateConfig │ └── vbToolsLd.templateConfig └── Type │ ├── Actor.type │ ├── BrightnessRepeat.type │ ├── ColliderLayers.type │ ├── ColumnTable.type │ ├── CompilerConfig.type │ ├── EngineConfig.type │ ├── Events.type │ ├── Font.type │ ├── InGameTypes.type │ ├── Logic.type │ ├── Messages.type │ ├── RumbleEffect.type │ ├── Sound.type │ └── Stage.type ├── doc ├── 3D-2D-Projections.xlsx ├── Fixed-data-types.xlsx ├── PCM-Playback.xlsx ├── build.txt └── remarks.txt ├── headers ├── Config.h ├── DebugConfig.h ├── Fonts.h ├── LibVUEngine.h ├── MinimalLib.h └── WaveForms.h ├── lib ├── compiler │ ├── linker │ │ └── vb.ld │ ├── make │ │ ├── makefile │ │ ├── makefile-common │ │ ├── makefile-compile │ │ ├── makefile-compile-randomize │ │ ├── makefile-compiler │ │ ├── makefile-game │ │ └── makefile-preprocess │ └── preprocessor │ │ ├── cleanSyntax.sh │ │ ├── normalMethodTraduction.awk │ │ ├── portHeader.sh │ │ ├── printCompilingInfo.sh │ │ ├── printProgress.sh │ │ ├── processGCCOutput.sh │ │ ├── processHeaderFile.sh │ │ ├── processSourceFile.sh │ │ ├── setupClasses.sh │ │ └── virtualMethodTraduction.awk ├── palette │ ├── 4Color.act │ ├── 4Color.png │ ├── 7Color.act │ ├── 7Color.png │ ├── 7ColorSplitBase.act │ ├── 7ColorSplitBase.png │ ├── 7ColorSplitFrame2.act │ ├── 7ColorSplitFrame2.png │ ├── 7ColorSplitOverlay.act │ └── 7ColorSplitOverlay.png └── utilities │ ├── MIDI-Converter.zip │ ├── padder.exe │ ├── padder_linux │ ├── padder_linux.c │ ├── vbwav │ ├── vbwav.c │ ├── vbwavLinux │ ├── vbwavOSX │ └── wav.sh ├── readme.md └── source ├── Camera ├── Camera.c ├── Camera.h ├── CameraEffectManager │ ├── CameraEffectManager.c │ └── CameraEffectManager.h └── CameraMovementManager │ ├── CameraMovementManager.c │ └── CameraMovementManager.h ├── Component ├── Behavior │ ├── Behavior.c │ ├── Behavior.h │ ├── BehaviorManager.c │ └── BehaviorManager.h ├── Body │ ├── Body.c │ ├── Body.h │ ├── BodyManager.c │ └── BodyManager.h ├── Collider │ ├── Ball │ │ ├── Ball.c │ │ └── Ball.h │ ├── Box │ │ ├── Box.c │ │ ├── Box.h │ │ └── InverseBox │ │ │ ├── InverseBox.c │ │ │ └── InverseBox.h │ ├── Collider.c │ ├── Collider.h │ ├── ColliderManager.c │ ├── ColliderManager.h │ ├── CollisionTester.c │ ├── CollisionTester.h │ └── LineField │ │ ├── LineField.c │ │ └── LineField.h ├── Component.c ├── Component.h ├── ComponentManager.c ├── ComponentManager.h ├── Mutator │ ├── Mutator.c │ ├── Mutator.h │ ├── MutatorManager.c │ └── MutatorManager.h └── VisualComponent │ ├── Sprite │ ├── AnimationController │ │ ├── AnimationController.c │ │ ├── AnimationController.h │ │ ├── AnimationCoordinator.c │ │ ├── AnimationCoordinator.h │ │ ├── AnimationCoordinatorFactory.c │ │ └── AnimationCoordinatorFactory.h │ ├── BgmapSprite │ │ ├── BgmapSprite.c │ │ ├── BgmapSprite.h │ │ ├── FrameBlendBgmapSprite │ │ │ ├── FrameBlendBgmapSprite.c │ │ │ └── FrameBlendBgmapSprite.h │ │ ├── MBgmapSprite │ │ │ ├── MBgmapSprite.c │ │ │ └── MBgmapSprite.h │ │ └── PrintingSprite │ │ │ ├── PrintingSprite.c │ │ │ └── PrintingSprite.h │ ├── ObjectSprite │ │ ├── ObjectSprite.c │ │ ├── ObjectSprite.h │ │ └── TextObjectSprite │ │ │ ├── TextObjectSprite.c │ │ │ └── TextObjectSprite.h │ ├── ObjectSpriteContainer │ │ ├── ObjectSpriteContainer.c │ │ └── ObjectSpriteContainer.h │ ├── ParamTableManager.c │ ├── ParamTableManager.h │ ├── Sprite.c │ ├── Sprite.h │ ├── SpriteManager.c │ ├── SpriteManager.h │ └── Texture │ │ ├── BgmapTexture │ │ ├── BgmapTexture.c │ │ ├── BgmapTexture.h │ │ ├── BgmapTextureManager.c │ │ └── BgmapTextureManager.h │ │ ├── CharSet │ │ ├── CharSet.c │ │ ├── CharSet.h │ │ ├── CharSetManager.c │ │ └── CharSetManager.h │ │ ├── ObjectTexture │ │ ├── ObjectTexture.c │ │ ├── ObjectTexture.h │ │ ├── ObjectTextureManager.c │ │ └── ObjectTextureManager.h │ │ ├── Texture.c │ │ └── Texture.h │ ├── VisualComponent.c │ ├── VisualComponent.h │ └── Wireframe │ ├── Asterisk │ ├── Asterisk.c │ └── Asterisk.h │ ├── Line │ ├── Line.c │ └── Line.h │ ├── Mesh │ ├── Mesh.c │ └── Mesh.h │ ├── Sphere │ ├── Sphere.c │ └── Sphere.h │ ├── Wireframe.c │ ├── Wireframe.h │ ├── WireframeManager.c │ └── WireframeManager.h ├── Debugging ├── Error │ ├── Error.c │ └── Error.h ├── Profiler │ ├── Profiler.c │ └── Profiler.h ├── Singleton │ ├── Singleton.c │ └── Singleton.h └── Tool │ ├── AnimationInspector │ ├── AnimationInspector.c │ └── AnimationInspector.h │ ├── Debug │ ├── Debug.c │ └── Debug.h │ ├── SoundTest │ ├── SoundTest.c │ └── SoundTest.h │ ├── StageEditor │ ├── StageEditor.c │ └── StageEditor.h │ ├── Tool.c │ └── Tool.h ├── Entity ├── Container │ ├── Actor │ │ ├── Actor.c │ │ ├── Actor.h │ │ ├── ActorFactory.c │ │ ├── ActorFactory.h │ │ └── ParticleSystem │ │ │ ├── ParticleSystem.c │ │ │ └── ParticleSystem.h │ ├── Container.c │ ├── Container.h │ ├── Stage │ │ ├── Stage.c │ │ └── Stage.h │ └── UIContainer │ │ ├── UIContainer.c │ │ └── UIContainer.h ├── Entity.c ├── Entity.h ├── Particle │ ├── Particle.c │ └── Particle.h └── Printer │ ├── Printer.c │ └── Printer.h ├── Hardware ├── CommunicationManager.c ├── CommunicationManager.h ├── FrameBufferManager.c ├── FrameBufferManager.h ├── HardwareManager.c ├── HardwareManager.h ├── KeypadManager.c ├── KeypadManager.h ├── RumbleManager.c ├── RumbleManager.h ├── SRAMManager.c ├── SRAMManager.h ├── TimerManager.c ├── TimerManager.h ├── VIPManager.c ├── VIPManager.h ├── VSUManager.c └── VSUManager.h ├── Misc ├── Constants.h ├── FrameRate │ ├── FrameRate.c │ └── FrameRate.h ├── Globals.h ├── Lists │ ├── VirtualCircularList.c │ ├── VirtualCircularList.h │ ├── VirtualList.c │ ├── VirtualList.h │ ├── VirtualNode.c │ └── VirtualNode.h ├── Math │ ├── Affine.c │ ├── Affine.h │ ├── Math.c │ ├── Math.h │ ├── Optical.h │ ├── PixelSize.h │ ├── PixelVector.c │ ├── PixelVector.h │ ├── Rotation.c │ ├── Rotation.h │ ├── Scale.c │ ├── Scale.h │ ├── Size.h │ ├── Vector2D.c │ ├── Vector2D.h │ ├── Vector3D.c │ └── Vector3D.h ├── Memory │ ├── Mem.c │ ├── Mem.h │ ├── MemoryPool.c │ └── MemoryPool.h ├── Messaging │ ├── Events.h │ ├── ListenerObject.c │ ├── ListenerObject.h │ ├── MessageDispatcher.c │ ├── MessageDispatcher.h │ ├── Telegram.c │ └── Telegram.h ├── Optics.h ├── OptionsSelector │ ├── OptionsSelector.c │ └── OptionsSelector.h ├── Time │ ├── Clock.c │ ├── Clock.h │ ├── ClockManager.c │ ├── ClockManager.h │ ├── Stopwatch.c │ ├── Stopwatch.h │ ├── StopwatchManager.c │ └── StopwatchManager.h ├── Types.h └── Utilities │ ├── Utilities.c │ └── Utilities.h ├── Object.c ├── Object.h ├── Runtime └── crt0.s ├── Sound ├── Sound.c ├── Sound.h ├── SoundManager.c ├── SoundManager.h └── SoundTrack │ ├── SoundTrack.c │ └── SoundTrack.h ├── State ├── GameState │ ├── GameState.c │ ├── GameState.h │ └── ToolState │ │ ├── AnimationInspectorState │ │ ├── AnimationInspectorState.c │ │ └── AnimationInspectorState.h │ │ ├── DebugState │ │ ├── DebugState.c │ │ └── DebugState.h │ │ ├── SoundTestState │ │ ├── SoundTestState.c │ │ └── SoundTestState.h │ │ ├── StageEditorState │ │ ├── StageEditorState.c │ │ └── StageEditorState.h │ │ ├── ToolState.c │ │ └── ToolState.h ├── State.c ├── State.h ├── StateMachine.c └── StateMachine.h ├── VUEngine.c └── VUEngine.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/LICENSE -------------------------------------------------------------------------------- /art/logos/VUEngine3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/art/logos/VUEngine3D.png -------------------------------------------------------------------------------- /assets/BrightnessRepeat/Converted/DefaultBrightnessRepeatSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/BrightnessRepeat/Converted/DefaultBrightnessRepeatSpec.c -------------------------------------------------------------------------------- /assets/BrightnessRepeat/Default.brightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/BrightnessRepeat/Default.brightness -------------------------------------------------------------------------------- /assets/ColumnTable/Converted/DefaultColumnTableSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/ColumnTable/Converted/DefaultColumnTableSpec.c -------------------------------------------------------------------------------- /assets/ColumnTable/Default.ctable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/ColumnTable/Default.ctable -------------------------------------------------------------------------------- /assets/Font/Converted/DebugFontSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Font/Converted/DebugFontSpec.c -------------------------------------------------------------------------------- /assets/Font/Converted/DefaultFontSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Font/Converted/DefaultFontSpec.c -------------------------------------------------------------------------------- /assets/Font/Converted/ProfilerFontSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Font/Converted/ProfilerFontSpec.c -------------------------------------------------------------------------------- /assets/Font/Debug.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Font/Debug.font -------------------------------------------------------------------------------- /assets/Font/Default.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Font/Default.font -------------------------------------------------------------------------------- /assets/Font/Profiler.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Font/Profiler.font -------------------------------------------------------------------------------- /assets/Fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Fonts.c -------------------------------------------------------------------------------- /assets/Stage/EmptyStageSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Stage/EmptyStageSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/GlockenWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/GlockenWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/OrganWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/OrganWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/PianoWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/PianoWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/RolandWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/RolandWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/SawSquareWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/SawSquareWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/SawWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/SawWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/SinePlusAlphaWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/SinePlusAlphaWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/SineWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/SineWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/SquareDuty75WaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/SquareDuty75WaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/SquareWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/SquareWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/TriangleWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/TriangleWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/TrumpetWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/TrumpetWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Converted/ViolinWaveFormSpec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Converted/ViolinWaveFormSpec.c -------------------------------------------------------------------------------- /assets/Waveform/Glocken.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Glocken.waveform -------------------------------------------------------------------------------- /assets/Waveform/Organ.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Organ.waveform -------------------------------------------------------------------------------- /assets/Waveform/Piano.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Piano.waveform -------------------------------------------------------------------------------- /assets/Waveform/Roland.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Roland.waveform -------------------------------------------------------------------------------- /assets/Waveform/Saw.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Saw.waveform -------------------------------------------------------------------------------- /assets/Waveform/SawSquare.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/SawSquare.waveform -------------------------------------------------------------------------------- /assets/Waveform/Sine.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Sine.waveform -------------------------------------------------------------------------------- /assets/Waveform/SinePlusAlpha.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/SinePlusAlpha.waveform -------------------------------------------------------------------------------- /assets/Waveform/Square.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Square.waveform -------------------------------------------------------------------------------- /assets/Waveform/SquareDuty75.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/SquareDuty75.waveform -------------------------------------------------------------------------------- /assets/Waveform/Triangle.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Triangle.waveform -------------------------------------------------------------------------------- /assets/Waveform/Trumpet.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Trumpet.waveform -------------------------------------------------------------------------------- /assets/Waveform/Violin.waveform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/assets/Waveform/Violin.waveform -------------------------------------------------------------------------------- /config/CompilerConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/config/CompilerConfig -------------------------------------------------------------------------------- /config/EngineConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/config/EngineConfig -------------------------------------------------------------------------------- /config/Events: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/config/Events -------------------------------------------------------------------------------- /config/Messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/config/Messages -------------------------------------------------------------------------------- /config/RomInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/config/RomInfo -------------------------------------------------------------------------------- /contributions/Template/ActorImageData.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/ActorImageData.c.njk -------------------------------------------------------------------------------- /contributions/Template/ActorSpec.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/ActorSpec.c.njk -------------------------------------------------------------------------------- /contributions/Template/BrightnessRepeatSpec.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/BrightnessRepeatSpec.c.njk -------------------------------------------------------------------------------- /contributions/Template/ColliderLayers.h.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/ColliderLayers.h.njk -------------------------------------------------------------------------------- /contributions/Template/ColumnTableSpec.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/ColumnTableSpec.c.njk -------------------------------------------------------------------------------- /contributions/Template/Config.h.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/Config.h.njk -------------------------------------------------------------------------------- /contributions/Template/FontSpec.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/FontSpec.c.njk -------------------------------------------------------------------------------- /contributions/Template/Fonts.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/Fonts.c.njk -------------------------------------------------------------------------------- /contributions/Template/Fonts.h.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/Fonts.h.njk -------------------------------------------------------------------------------- /contributions/Template/GameEvents.h.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/GameEvents.h.njk -------------------------------------------------------------------------------- /contributions/Template/InGameTypes.h.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/InGameTypes.h.njk -------------------------------------------------------------------------------- /contributions/Template/Messages.h.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/Messages.h.njk -------------------------------------------------------------------------------- /contributions/Template/RumbleEffectSpec.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/RumbleEffectSpec.c.njk -------------------------------------------------------------------------------- /contributions/Template/RumbleEffects.h.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/RumbleEffects.h.njk -------------------------------------------------------------------------------- /contributions/Template/SoundSpec.c.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/SoundSpec.c.njk -------------------------------------------------------------------------------- /contributions/Template/config.make.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/config.make.njk -------------------------------------------------------------------------------- /contributions/Template/vb.ld.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/vb.ld.njk -------------------------------------------------------------------------------- /contributions/Template/vb_tools.ld.njk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Template/vb_tools.ld.njk -------------------------------------------------------------------------------- /contributions/TemplateConfig/ActorImageData.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/ActorImageData.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/ActorSpec.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/ActorSpec.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/BrightnessRepeatSpec.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/BrightnessRepeatSpec.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/ColliderLayers.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/ColliderLayers.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/ColumnTableSpec.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/ColumnTableSpec.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/Config.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/Config.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/FontSpec.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/FontSpec.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/FontsC.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/FontsC.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/FontsH.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/FontsH.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/GameEvents.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/GameEvents.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/InGameTypes.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/InGameTypes.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/Messages.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/Messages.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/RumbleEffectSpec.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/RumbleEffectSpec.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/RumbleEffects.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/RumbleEffects.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/SoundSpec.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/SoundSpec.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/configMake.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/configMake.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/vbLd.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/vbLd.templateConfig -------------------------------------------------------------------------------- /contributions/TemplateConfig/vbToolsLd.templateConfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/TemplateConfig/vbToolsLd.templateConfig -------------------------------------------------------------------------------- /contributions/Type/Actor.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/Actor.type -------------------------------------------------------------------------------- /contributions/Type/BrightnessRepeat.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/BrightnessRepeat.type -------------------------------------------------------------------------------- /contributions/Type/ColliderLayers.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/ColliderLayers.type -------------------------------------------------------------------------------- /contributions/Type/ColumnTable.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/ColumnTable.type -------------------------------------------------------------------------------- /contributions/Type/CompilerConfig.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/CompilerConfig.type -------------------------------------------------------------------------------- /contributions/Type/EngineConfig.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/EngineConfig.type -------------------------------------------------------------------------------- /contributions/Type/Events.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/Events.type -------------------------------------------------------------------------------- /contributions/Type/Font.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/Font.type -------------------------------------------------------------------------------- /contributions/Type/InGameTypes.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/InGameTypes.type -------------------------------------------------------------------------------- /contributions/Type/Logic.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/Logic.type -------------------------------------------------------------------------------- /contributions/Type/Messages.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/Messages.type -------------------------------------------------------------------------------- /contributions/Type/RumbleEffect.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/RumbleEffect.type -------------------------------------------------------------------------------- /contributions/Type/Sound.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/Sound.type -------------------------------------------------------------------------------- /contributions/Type/Stage.type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/contributions/Type/Stage.type -------------------------------------------------------------------------------- /doc/3D-2D-Projections.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/doc/3D-2D-Projections.xlsx -------------------------------------------------------------------------------- /doc/Fixed-data-types.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/doc/Fixed-data-types.xlsx -------------------------------------------------------------------------------- /doc/PCM-Playback.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/doc/PCM-Playback.xlsx -------------------------------------------------------------------------------- /doc/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/doc/build.txt -------------------------------------------------------------------------------- /doc/remarks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/doc/remarks.txt -------------------------------------------------------------------------------- /headers/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/headers/Config.h -------------------------------------------------------------------------------- /headers/DebugConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/headers/DebugConfig.h -------------------------------------------------------------------------------- /headers/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/headers/Fonts.h -------------------------------------------------------------------------------- /headers/LibVUEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/headers/LibVUEngine.h -------------------------------------------------------------------------------- /headers/MinimalLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/headers/MinimalLib.h -------------------------------------------------------------------------------- /headers/WaveForms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/headers/WaveForms.h -------------------------------------------------------------------------------- /lib/compiler/linker/vb.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/linker/vb.ld -------------------------------------------------------------------------------- /lib/compiler/make/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/make/makefile -------------------------------------------------------------------------------- /lib/compiler/make/makefile-common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/make/makefile-common -------------------------------------------------------------------------------- /lib/compiler/make/makefile-compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/make/makefile-compile -------------------------------------------------------------------------------- /lib/compiler/make/makefile-compile-randomize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/make/makefile-compile-randomize -------------------------------------------------------------------------------- /lib/compiler/make/makefile-compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/make/makefile-compiler -------------------------------------------------------------------------------- /lib/compiler/make/makefile-game: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/make/makefile-game -------------------------------------------------------------------------------- /lib/compiler/make/makefile-preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/make/makefile-preprocess -------------------------------------------------------------------------------- /lib/compiler/preprocessor/cleanSyntax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/cleanSyntax.sh -------------------------------------------------------------------------------- /lib/compiler/preprocessor/normalMethodTraduction.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/normalMethodTraduction.awk -------------------------------------------------------------------------------- /lib/compiler/preprocessor/portHeader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/portHeader.sh -------------------------------------------------------------------------------- /lib/compiler/preprocessor/printCompilingInfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/printCompilingInfo.sh -------------------------------------------------------------------------------- /lib/compiler/preprocessor/printProgress.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | while : ; do 4 | sleep 0.5 5 | echo -n "." 6 | done 7 | -------------------------------------------------------------------------------- /lib/compiler/preprocessor/processGCCOutput.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/processGCCOutput.sh -------------------------------------------------------------------------------- /lib/compiler/preprocessor/processHeaderFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/processHeaderFile.sh -------------------------------------------------------------------------------- /lib/compiler/preprocessor/processSourceFile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/processSourceFile.sh -------------------------------------------------------------------------------- /lib/compiler/preprocessor/setupClasses.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/setupClasses.sh -------------------------------------------------------------------------------- /lib/compiler/preprocessor/virtualMethodTraduction.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/compiler/preprocessor/virtualMethodTraduction.awk -------------------------------------------------------------------------------- /lib/palette/4Color.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/4Color.act -------------------------------------------------------------------------------- /lib/palette/4Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/4Color.png -------------------------------------------------------------------------------- /lib/palette/7Color.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7Color.act -------------------------------------------------------------------------------- /lib/palette/7Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7Color.png -------------------------------------------------------------------------------- /lib/palette/7ColorSplitBase.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7ColorSplitBase.act -------------------------------------------------------------------------------- /lib/palette/7ColorSplitBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7ColorSplitBase.png -------------------------------------------------------------------------------- /lib/palette/7ColorSplitFrame2.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7ColorSplitFrame2.act -------------------------------------------------------------------------------- /lib/palette/7ColorSplitFrame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7ColorSplitFrame2.png -------------------------------------------------------------------------------- /lib/palette/7ColorSplitOverlay.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7ColorSplitOverlay.act -------------------------------------------------------------------------------- /lib/palette/7ColorSplitOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/palette/7ColorSplitOverlay.png -------------------------------------------------------------------------------- /lib/utilities/MIDI-Converter.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/MIDI-Converter.zip -------------------------------------------------------------------------------- /lib/utilities/padder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/padder.exe -------------------------------------------------------------------------------- /lib/utilities/padder_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/padder_linux -------------------------------------------------------------------------------- /lib/utilities/padder_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/padder_linux.c -------------------------------------------------------------------------------- /lib/utilities/vbwav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/vbwav -------------------------------------------------------------------------------- /lib/utilities/vbwav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/vbwav.c -------------------------------------------------------------------------------- /lib/utilities/vbwavLinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/vbwavLinux -------------------------------------------------------------------------------- /lib/utilities/vbwavOSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/vbwavOSX -------------------------------------------------------------------------------- /lib/utilities/wav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/lib/utilities/wav.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/readme.md -------------------------------------------------------------------------------- /source/Camera/Camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Camera/Camera.c -------------------------------------------------------------------------------- /source/Camera/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Camera/Camera.h -------------------------------------------------------------------------------- /source/Camera/CameraEffectManager/CameraEffectManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Camera/CameraEffectManager/CameraEffectManager.c -------------------------------------------------------------------------------- /source/Camera/CameraEffectManager/CameraEffectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Camera/CameraEffectManager/CameraEffectManager.h -------------------------------------------------------------------------------- /source/Camera/CameraMovementManager/CameraMovementManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Camera/CameraMovementManager/CameraMovementManager.c -------------------------------------------------------------------------------- /source/Camera/CameraMovementManager/CameraMovementManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Camera/CameraMovementManager/CameraMovementManager.h -------------------------------------------------------------------------------- /source/Component/Behavior/Behavior.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Behavior/Behavior.c -------------------------------------------------------------------------------- /source/Component/Behavior/Behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Behavior/Behavior.h -------------------------------------------------------------------------------- /source/Component/Behavior/BehaviorManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Behavior/BehaviorManager.c -------------------------------------------------------------------------------- /source/Component/Behavior/BehaviorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Behavior/BehaviorManager.h -------------------------------------------------------------------------------- /source/Component/Body/Body.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Body/Body.c -------------------------------------------------------------------------------- /source/Component/Body/Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Body/Body.h -------------------------------------------------------------------------------- /source/Component/Body/BodyManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Body/BodyManager.c -------------------------------------------------------------------------------- /source/Component/Body/BodyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Body/BodyManager.h -------------------------------------------------------------------------------- /source/Component/Collider/Ball/Ball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Ball/Ball.c -------------------------------------------------------------------------------- /source/Component/Collider/Ball/Ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Ball/Ball.h -------------------------------------------------------------------------------- /source/Component/Collider/Box/Box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Box/Box.c -------------------------------------------------------------------------------- /source/Component/Collider/Box/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Box/Box.h -------------------------------------------------------------------------------- /source/Component/Collider/Box/InverseBox/InverseBox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Box/InverseBox/InverseBox.c -------------------------------------------------------------------------------- /source/Component/Collider/Box/InverseBox/InverseBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Box/InverseBox/InverseBox.h -------------------------------------------------------------------------------- /source/Component/Collider/Collider.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Collider.c -------------------------------------------------------------------------------- /source/Component/Collider/Collider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/Collider.h -------------------------------------------------------------------------------- /source/Component/Collider/ColliderManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/ColliderManager.c -------------------------------------------------------------------------------- /source/Component/Collider/ColliderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/ColliderManager.h -------------------------------------------------------------------------------- /source/Component/Collider/CollisionTester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/CollisionTester.c -------------------------------------------------------------------------------- /source/Component/Collider/CollisionTester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/CollisionTester.h -------------------------------------------------------------------------------- /source/Component/Collider/LineField/LineField.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/LineField/LineField.c -------------------------------------------------------------------------------- /source/Component/Collider/LineField/LineField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Collider/LineField/LineField.h -------------------------------------------------------------------------------- /source/Component/Component.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Component.c -------------------------------------------------------------------------------- /source/Component/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Component.h -------------------------------------------------------------------------------- /source/Component/ComponentManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/ComponentManager.c -------------------------------------------------------------------------------- /source/Component/ComponentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/ComponentManager.h -------------------------------------------------------------------------------- /source/Component/Mutator/Mutator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Mutator/Mutator.c -------------------------------------------------------------------------------- /source/Component/Mutator/Mutator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Mutator/Mutator.h -------------------------------------------------------------------------------- /source/Component/Mutator/MutatorManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Mutator/MutatorManager.c -------------------------------------------------------------------------------- /source/Component/Mutator/MutatorManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/Mutator/MutatorManager.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/AnimationController/AnimationController.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/AnimationController/AnimationController.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/AnimationController/AnimationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/AnimationController/AnimationController.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinator.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinator.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinatorFactory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinatorFactory.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinatorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/AnimationController/AnimationCoordinatorFactory.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/BgmapSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/BgmapSprite.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/BgmapSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/BgmapSprite.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/FrameBlendBgmapSprite/FrameBlendBgmapSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/FrameBlendBgmapSprite/FrameBlendBgmapSprite.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/FrameBlendBgmapSprite/FrameBlendBgmapSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/FrameBlendBgmapSprite/FrameBlendBgmapSprite.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/MBgmapSprite/MBgmapSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/MBgmapSprite/MBgmapSprite.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/MBgmapSprite/MBgmapSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/MBgmapSprite/MBgmapSprite.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/PrintingSprite/PrintingSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/PrintingSprite/PrintingSprite.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/BgmapSprite/PrintingSprite/PrintingSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/BgmapSprite/PrintingSprite/PrintingSprite.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ObjectSprite/ObjectSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ObjectSprite/ObjectSprite.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ObjectSprite/ObjectSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ObjectSprite/ObjectSprite.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ObjectSprite/TextObjectSprite/TextObjectSprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ObjectSprite/TextObjectSprite/TextObjectSprite.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ObjectSprite/TextObjectSprite/TextObjectSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ObjectSprite/TextObjectSprite/TextObjectSprite.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ObjectSpriteContainer/ObjectSpriteContainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ObjectSpriteContainer/ObjectSpriteContainer.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ObjectSpriteContainer/ObjectSpriteContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ObjectSpriteContainer/ObjectSpriteContainer.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ParamTableManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ParamTableManager.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/ParamTableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/ParamTableManager.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Sprite.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Sprite.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/SpriteManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/SpriteManager.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/SpriteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/SpriteManager.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTexture.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTexture.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTextureManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTextureManager.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/BgmapTexture/BgmapTextureManager.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/CharSet/CharSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/CharSet/CharSet.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/CharSet/CharSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/CharSet/CharSet.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/CharSet/CharSetManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/CharSet/CharSetManager.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/CharSet/CharSetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/CharSet/CharSetManager.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTexture.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTexture.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTextureManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTextureManager.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/ObjectTexture/ObjectTextureManager.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/Texture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/Texture.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Sprite/Texture/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Sprite/Texture/Texture.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/VisualComponent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/VisualComponent.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/VisualComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/VisualComponent.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Asterisk/Asterisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Asterisk/Asterisk.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Asterisk/Asterisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Asterisk/Asterisk.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Line/Line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Line/Line.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Line/Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Line/Line.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Mesh/Mesh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Mesh/Mesh.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Mesh/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Mesh/Mesh.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Sphere/Sphere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Sphere/Sphere.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Sphere/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Sphere/Sphere.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Wireframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Wireframe.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/Wireframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/Wireframe.h -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/WireframeManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/WireframeManager.c -------------------------------------------------------------------------------- /source/Component/VisualComponent/Wireframe/WireframeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Component/VisualComponent/Wireframe/WireframeManager.h -------------------------------------------------------------------------------- /source/Debugging/Error/Error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Error/Error.c -------------------------------------------------------------------------------- /source/Debugging/Error/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Error/Error.h -------------------------------------------------------------------------------- /source/Debugging/Profiler/Profiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Profiler/Profiler.c -------------------------------------------------------------------------------- /source/Debugging/Profiler/Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Profiler/Profiler.h -------------------------------------------------------------------------------- /source/Debugging/Singleton/Singleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Singleton/Singleton.c -------------------------------------------------------------------------------- /source/Debugging/Singleton/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Singleton/Singleton.h -------------------------------------------------------------------------------- /source/Debugging/Tool/AnimationInspector/AnimationInspector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/AnimationInspector/AnimationInspector.c -------------------------------------------------------------------------------- /source/Debugging/Tool/AnimationInspector/AnimationInspector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/AnimationInspector/AnimationInspector.h -------------------------------------------------------------------------------- /source/Debugging/Tool/Debug/Debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/Debug/Debug.c -------------------------------------------------------------------------------- /source/Debugging/Tool/Debug/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/Debug/Debug.h -------------------------------------------------------------------------------- /source/Debugging/Tool/SoundTest/SoundTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/SoundTest/SoundTest.c -------------------------------------------------------------------------------- /source/Debugging/Tool/SoundTest/SoundTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/SoundTest/SoundTest.h -------------------------------------------------------------------------------- /source/Debugging/Tool/StageEditor/StageEditor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/StageEditor/StageEditor.c -------------------------------------------------------------------------------- /source/Debugging/Tool/StageEditor/StageEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/StageEditor/StageEditor.h -------------------------------------------------------------------------------- /source/Debugging/Tool/Tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/Tool.c -------------------------------------------------------------------------------- /source/Debugging/Tool/Tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Debugging/Tool/Tool.h -------------------------------------------------------------------------------- /source/Entity/Container/Actor/Actor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Actor/Actor.c -------------------------------------------------------------------------------- /source/Entity/Container/Actor/Actor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Actor/Actor.h -------------------------------------------------------------------------------- /source/Entity/Container/Actor/ActorFactory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Actor/ActorFactory.c -------------------------------------------------------------------------------- /source/Entity/Container/Actor/ActorFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Actor/ActorFactory.h -------------------------------------------------------------------------------- /source/Entity/Container/Actor/ParticleSystem/ParticleSystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Actor/ParticleSystem/ParticleSystem.c -------------------------------------------------------------------------------- /source/Entity/Container/Actor/ParticleSystem/ParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Actor/ParticleSystem/ParticleSystem.h -------------------------------------------------------------------------------- /source/Entity/Container/Container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Container.c -------------------------------------------------------------------------------- /source/Entity/Container/Container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Container.h -------------------------------------------------------------------------------- /source/Entity/Container/Stage/Stage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Stage/Stage.c -------------------------------------------------------------------------------- /source/Entity/Container/Stage/Stage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/Stage/Stage.h -------------------------------------------------------------------------------- /source/Entity/Container/UIContainer/UIContainer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/UIContainer/UIContainer.c -------------------------------------------------------------------------------- /source/Entity/Container/UIContainer/UIContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Container/UIContainer/UIContainer.h -------------------------------------------------------------------------------- /source/Entity/Entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Entity.c -------------------------------------------------------------------------------- /source/Entity/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Entity.h -------------------------------------------------------------------------------- /source/Entity/Particle/Particle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Particle/Particle.c -------------------------------------------------------------------------------- /source/Entity/Particle/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Particle/Particle.h -------------------------------------------------------------------------------- /source/Entity/Printer/Printer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Printer/Printer.c -------------------------------------------------------------------------------- /source/Entity/Printer/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Entity/Printer/Printer.h -------------------------------------------------------------------------------- /source/Hardware/CommunicationManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/CommunicationManager.c -------------------------------------------------------------------------------- /source/Hardware/CommunicationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/CommunicationManager.h -------------------------------------------------------------------------------- /source/Hardware/FrameBufferManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/FrameBufferManager.c -------------------------------------------------------------------------------- /source/Hardware/FrameBufferManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/FrameBufferManager.h -------------------------------------------------------------------------------- /source/Hardware/HardwareManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/HardwareManager.c -------------------------------------------------------------------------------- /source/Hardware/HardwareManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/HardwareManager.h -------------------------------------------------------------------------------- /source/Hardware/KeypadManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/KeypadManager.c -------------------------------------------------------------------------------- /source/Hardware/KeypadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/KeypadManager.h -------------------------------------------------------------------------------- /source/Hardware/RumbleManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/RumbleManager.c -------------------------------------------------------------------------------- /source/Hardware/RumbleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/RumbleManager.h -------------------------------------------------------------------------------- /source/Hardware/SRAMManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/SRAMManager.c -------------------------------------------------------------------------------- /source/Hardware/SRAMManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/SRAMManager.h -------------------------------------------------------------------------------- /source/Hardware/TimerManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/TimerManager.c -------------------------------------------------------------------------------- /source/Hardware/TimerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/TimerManager.h -------------------------------------------------------------------------------- /source/Hardware/VIPManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/VIPManager.c -------------------------------------------------------------------------------- /source/Hardware/VIPManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/VIPManager.h -------------------------------------------------------------------------------- /source/Hardware/VSUManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/VSUManager.c -------------------------------------------------------------------------------- /source/Hardware/VSUManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Hardware/VSUManager.h -------------------------------------------------------------------------------- /source/Misc/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Constants.h -------------------------------------------------------------------------------- /source/Misc/FrameRate/FrameRate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/FrameRate/FrameRate.c -------------------------------------------------------------------------------- /source/Misc/FrameRate/FrameRate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/FrameRate/FrameRate.h -------------------------------------------------------------------------------- /source/Misc/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Globals.h -------------------------------------------------------------------------------- /source/Misc/Lists/VirtualCircularList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Lists/VirtualCircularList.c -------------------------------------------------------------------------------- /source/Misc/Lists/VirtualCircularList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Lists/VirtualCircularList.h -------------------------------------------------------------------------------- /source/Misc/Lists/VirtualList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Lists/VirtualList.c -------------------------------------------------------------------------------- /source/Misc/Lists/VirtualList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Lists/VirtualList.h -------------------------------------------------------------------------------- /source/Misc/Lists/VirtualNode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Lists/VirtualNode.c -------------------------------------------------------------------------------- /source/Misc/Lists/VirtualNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Lists/VirtualNode.h -------------------------------------------------------------------------------- /source/Misc/Math/Affine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Affine.c -------------------------------------------------------------------------------- /source/Misc/Math/Affine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Affine.h -------------------------------------------------------------------------------- /source/Misc/Math/Math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Math.c -------------------------------------------------------------------------------- /source/Misc/Math/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Math.h -------------------------------------------------------------------------------- /source/Misc/Math/Optical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Optical.h -------------------------------------------------------------------------------- /source/Misc/Math/PixelSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/PixelSize.h -------------------------------------------------------------------------------- /source/Misc/Math/PixelVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/PixelVector.c -------------------------------------------------------------------------------- /source/Misc/Math/PixelVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/PixelVector.h -------------------------------------------------------------------------------- /source/Misc/Math/Rotation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Rotation.c -------------------------------------------------------------------------------- /source/Misc/Math/Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Rotation.h -------------------------------------------------------------------------------- /source/Misc/Math/Scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Scale.c -------------------------------------------------------------------------------- /source/Misc/Math/Scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Scale.h -------------------------------------------------------------------------------- /source/Misc/Math/Size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Size.h -------------------------------------------------------------------------------- /source/Misc/Math/Vector2D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Vector2D.c -------------------------------------------------------------------------------- /source/Misc/Math/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Vector2D.h -------------------------------------------------------------------------------- /source/Misc/Math/Vector3D.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Vector3D.c -------------------------------------------------------------------------------- /source/Misc/Math/Vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Math/Vector3D.h -------------------------------------------------------------------------------- /source/Misc/Memory/Mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Memory/Mem.c -------------------------------------------------------------------------------- /source/Misc/Memory/Mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Memory/Mem.h -------------------------------------------------------------------------------- /source/Misc/Memory/MemoryPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Memory/MemoryPool.c -------------------------------------------------------------------------------- /source/Misc/Memory/MemoryPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Memory/MemoryPool.h -------------------------------------------------------------------------------- /source/Misc/Messaging/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Messaging/Events.h -------------------------------------------------------------------------------- /source/Misc/Messaging/ListenerObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Messaging/ListenerObject.c -------------------------------------------------------------------------------- /source/Misc/Messaging/ListenerObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Messaging/ListenerObject.h -------------------------------------------------------------------------------- /source/Misc/Messaging/MessageDispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Messaging/MessageDispatcher.c -------------------------------------------------------------------------------- /source/Misc/Messaging/MessageDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Messaging/MessageDispatcher.h -------------------------------------------------------------------------------- /source/Misc/Messaging/Telegram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Messaging/Telegram.c -------------------------------------------------------------------------------- /source/Misc/Messaging/Telegram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Messaging/Telegram.h -------------------------------------------------------------------------------- /source/Misc/Optics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Optics.h -------------------------------------------------------------------------------- /source/Misc/OptionsSelector/OptionsSelector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/OptionsSelector/OptionsSelector.c -------------------------------------------------------------------------------- /source/Misc/OptionsSelector/OptionsSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/OptionsSelector/OptionsSelector.h -------------------------------------------------------------------------------- /source/Misc/Time/Clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/Clock.c -------------------------------------------------------------------------------- /source/Misc/Time/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/Clock.h -------------------------------------------------------------------------------- /source/Misc/Time/ClockManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/ClockManager.c -------------------------------------------------------------------------------- /source/Misc/Time/ClockManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/ClockManager.h -------------------------------------------------------------------------------- /source/Misc/Time/Stopwatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/Stopwatch.c -------------------------------------------------------------------------------- /source/Misc/Time/Stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/Stopwatch.h -------------------------------------------------------------------------------- /source/Misc/Time/StopwatchManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/StopwatchManager.c -------------------------------------------------------------------------------- /source/Misc/Time/StopwatchManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Time/StopwatchManager.h -------------------------------------------------------------------------------- /source/Misc/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Types.h -------------------------------------------------------------------------------- /source/Misc/Utilities/Utilities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Utilities/Utilities.c -------------------------------------------------------------------------------- /source/Misc/Utilities/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Misc/Utilities/Utilities.h -------------------------------------------------------------------------------- /source/Object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Object.c -------------------------------------------------------------------------------- /source/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Object.h -------------------------------------------------------------------------------- /source/Runtime/crt0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Runtime/crt0.s -------------------------------------------------------------------------------- /source/Sound/Sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Sound/Sound.c -------------------------------------------------------------------------------- /source/Sound/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Sound/Sound.h -------------------------------------------------------------------------------- /source/Sound/SoundManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Sound/SoundManager.c -------------------------------------------------------------------------------- /source/Sound/SoundManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Sound/SoundManager.h -------------------------------------------------------------------------------- /source/Sound/SoundTrack/SoundTrack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Sound/SoundTrack/SoundTrack.c -------------------------------------------------------------------------------- /source/Sound/SoundTrack/SoundTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/Sound/SoundTrack/SoundTrack.h -------------------------------------------------------------------------------- /source/State/GameState/GameState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/GameState.c -------------------------------------------------------------------------------- /source/State/GameState/GameState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/GameState.h -------------------------------------------------------------------------------- /source/State/GameState/ToolState/AnimationInspectorState/AnimationInspectorState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/AnimationInspectorState/AnimationInspectorState.c -------------------------------------------------------------------------------- /source/State/GameState/ToolState/AnimationInspectorState/AnimationInspectorState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/AnimationInspectorState/AnimationInspectorState.h -------------------------------------------------------------------------------- /source/State/GameState/ToolState/DebugState/DebugState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/DebugState/DebugState.c -------------------------------------------------------------------------------- /source/State/GameState/ToolState/DebugState/DebugState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/DebugState/DebugState.h -------------------------------------------------------------------------------- /source/State/GameState/ToolState/SoundTestState/SoundTestState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/SoundTestState/SoundTestState.c -------------------------------------------------------------------------------- /source/State/GameState/ToolState/SoundTestState/SoundTestState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/SoundTestState/SoundTestState.h -------------------------------------------------------------------------------- /source/State/GameState/ToolState/StageEditorState/StageEditorState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/StageEditorState/StageEditorState.c -------------------------------------------------------------------------------- /source/State/GameState/ToolState/StageEditorState/StageEditorState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/StageEditorState/StageEditorState.h -------------------------------------------------------------------------------- /source/State/GameState/ToolState/ToolState.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/ToolState.c -------------------------------------------------------------------------------- /source/State/GameState/ToolState/ToolState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/GameState/ToolState/ToolState.h -------------------------------------------------------------------------------- /source/State/State.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/State.c -------------------------------------------------------------------------------- /source/State/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/State.h -------------------------------------------------------------------------------- /source/State/StateMachine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/StateMachine.c -------------------------------------------------------------------------------- /source/State/StateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/State/StateMachine.h -------------------------------------------------------------------------------- /source/VUEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/VUEngine.c -------------------------------------------------------------------------------- /source/VUEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VUEngine/VUEngine-Core/HEAD/source/VUEngine.h --------------------------------------------------------------------------------