├── .gitignore ├── 01-Inheritance ├── index.html └── src │ └── index.ts ├── 02-Behaviors-and-Observables ├── index.html └── src │ └── index.ts ├── 03-ECS ├── index.html └── src │ └── index.ts ├── 04-Events ├── index.html └── src │ └── index.ts ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /01-Inheritance/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/01-Inheritance/index.html -------------------------------------------------------------------------------- /01-Inheritance/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/01-Inheritance/src/index.ts -------------------------------------------------------------------------------- /02-Behaviors-and-Observables/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/02-Behaviors-and-Observables/index.html -------------------------------------------------------------------------------- /02-Behaviors-and-Observables/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/02-Behaviors-and-Observables/src/index.ts -------------------------------------------------------------------------------- /03-ECS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/03-ECS/index.html -------------------------------------------------------------------------------- /03-ECS/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/03-ECS/src/index.ts -------------------------------------------------------------------------------- /04-Events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/04-Events/index.html -------------------------------------------------------------------------------- /04-Events/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/04-Events/src/index.ts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DisownedWheat/BabylonJS-Game-Logic-Examples/HEAD/package.json --------------------------------------------------------------------------------