Skip to content

Commit

Permalink
update copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre-LA committed Jan 12, 2023
1 parent f704e36 commit c0e4f0c
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 André Luiz Alvares
Copyright (c) 2019-present André Luiz Alvares

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion examples/basic.nelua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- Basic example
-- This code shows the basic usage of rotor on a full ECS usage.

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local math = require 'math'
Expand Down
2 changes: 1 addition & 1 deletion examples/bench.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Note: you will need nene in order to run this example: https://github.com/Andre-
run with `nelua examples/entity_tree -L path/to/nene`
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local Nene = require 'nene'
Expand Down
2 changes: 1 addition & 1 deletion examples/derived.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on the system filter.
This is inspired from "variant prefabs" on other game engines.
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local io = require 'io'
Expand Down
2 changes: 1 addition & 1 deletion examples/derived_entity_tree.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Note: you will need nene in order to run this example: https://github.com/Andre-
run with `nelua examples/entity_tree -L path/to/nene`
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

-- nelua
Expand Down
2 changes: 1 addition & 1 deletion examples/entity_tree.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Note: you will need nene in order to run this example: https://github.com/Andre-
run with `nelua examples/entity_tree -L path/to/nene`
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

-- nelua
Expand Down
2 changes: 1 addition & 1 deletion examples/entity_with_destroy.nelua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-- Entity with `destroy` call example
-- This code shows how to destroy entities while removal.

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

--[[
Expand Down
2 changes: 1 addition & 1 deletion examples/override.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ you probably need to derive the base entity type on a new type, for this,
see the `derived` example.
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local io = require 'io'
Expand Down
2 changes: 1 addition & 1 deletion rotor/component.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ local position: Position = {
```
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

##[[
Expand Down
2 changes: 1 addition & 1 deletion rotor/concepts.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ end
```
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local Concepts = @record{}
Expand Down
2 changes: 1 addition & 1 deletion rotor/derived_entity.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ local wizard: Wizard = {
```
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local utils = require 'rotor.utils'
Expand Down
2 changes: 1 addition & 1 deletion rotor/entity.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ local parent: ParentEntity = {
```
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local utils = require 'rotor.utils'
Expand Down
2 changes: 1 addition & 1 deletion rotor/gen_idx.nelua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-- Generational Index module

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

-- Generational Indexes, it identifies an index with a generation, making
Expand Down
2 changes: 1 addition & 1 deletion rotor/storage.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and then removes the second entry, then a fourth entry can be pushed and it will
slot, thus the generational index of this fourth entry will be a second generation of the second slot.
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

local GenIdx = require 'rotor.gen_idx'
Expand Down
2 changes: 1 addition & 1 deletion rotor/system.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ movement_system:run(&my_entity_storage)
For a better understanding, see the examples.
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

require 'iterators'
Expand Down
2 changes: 1 addition & 1 deletion rotor/utils.nelua
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The Utils module.
This module have some useful utility functions.
]]

-- Copyright (c) 2019-2022 André Luiz Alvares
-- Copyright (c) 2019-present André Luiz Alvares
-- SPDX-License-Identifier: MIT

-- The util module
Expand Down

0 comments on commit c0e4f0c

Please sign in to comment.