-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stage3: restructure into a folder-based layout
It's an absolute mess, but should make integrating stage3_revamp easier…
- Loading branch information
Showing
26 changed files
with
2,357 additions
and
2,035 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* This software is licensed under the terms of the MIT License. | ||
* See COPYING for further information. | ||
* --- | ||
* Copyright (c) 2011-2019, Lukas Weber <[email protected]>. | ||
* Copyright (c) 2012-2019, Andrei Alexeyev <[email protected]>. | ||
*/ | ||
|
||
#include "taisei.h" | ||
|
||
#include "background_anim.h" | ||
#include "draw.h" | ||
|
||
#include "global.h" | ||
#include "stageutils.h" | ||
|
||
// TODO | ||
|
||
TASK(animate_bg, NO_ARGS) { | ||
for(;;) { | ||
YIELD; | ||
stage3d_update(&stage_3d_context); | ||
} | ||
} | ||
|
||
void stage3_bg_init_fullstage(void) { | ||
INVOKE_TASK(animate_bg); | ||
} | ||
|
||
void stage3_bg_init_spellpractice(void) { | ||
INVOKE_TASK(animate_bg); | ||
} |
Oops, something went wrong.